brand new test article for more testing
Table of Contents
Overview
This is a test article to verify that all formatting elements render correctly in Helpjuice.
Text Formatting
This paragraph contains bold text, italic text, underlined text, and inline code.
Lists
Unordered List
- First bullet item
- Second bullet item
- Third bullet item
Ordered List
- First step
- Second step
- Third step
Callout Boxes
This is an info callout box for notes and general information.
This is a warning callout box for cautions and things to check before proceeding.
This is a success callout box for confirmations and best practices.
This is a danger callout box for critical warnings and destructive actions.
Table
| Feature | Status | Notes |
|---|---|---|
| Bold / Italic / Underline | Supported | Inline HTML tags |
| Callout boxes | Supported | info, warning, success, danger |
| Code blocks | Supported | With language highlighting |
Code Blocks
Plain text code block:
This is a plain text code block
Bash code block:
echo "Hello from bash"
cd /my/directory
ls -la
Python code block:
def hello():
print("Hello from Python")
hello()My own Python code block:
def hello():
print("Hello from Python")
hello()Java:
<pre><code class="language-java">public class Hello {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}</code></pre>
<p>
</p>C++:
<pre><code class="language-cpp">#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}</code></pre>
<p>
</p>Links
This is a link to Google as an external link example.