testmarkdowndocumentation
Markdown Style Test
June 1, 2024
Heading Level 1
This is the largest heading
Heading Level 2
Second largest heading
Heading Level 3
Medium heading
Heading Level 4
Smaller heading
Heading Level 5
Even smaller heading
Heading Level 6
Smallest heading
Text Formatting
Bold text is written with double asterisks
Italic text is written with single asterisks
Bold and italic text combines both
Strikethrough text uses double tildes
Lists
Unordered List
- Item 1
- Item 2
- Nested item 2.1
- Nested item 2.2
- Item 3
Ordered List
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
Links and Images
Code
Inline code: const greeting = 'Hello World';
Code block with syntax highlighting:
function greet(name) {
return `Hello, ${name}!`;
}
const result = greet('Zenith User');
console.log(result);
Blockquotes
This is a blockquote.
It can span multiple paragraphs.
And it can be nested.
Tables
Feature | Supported | Notes |
---|---|---|
Headings | Yes | Six levels |
Lists | Yes | Ordered and unordered |
Code | Yes | Inline and blocks |
Tables | Yes | With alignment options |
Horizontal Rule
Above this line
Below this line
Task Lists
- Completed task
- Incomplete task
- Another task to do
Combining Elements
A heading in a blockquote
- With a list
- And some formatting
// And even code const amazing = true;