1.6 KiB
1.6 KiB
Test Markdown Document
This document exercises a variety of Markdown features for testing purposes.
Inline Formatting
This is bold, this is italic, and this is bold italic.
Here is inline code and strikethrough text.
Links and Images
Lists
Unordered
- Item one
- Item two
- Nested item A
- Nested item B
- Deep nested
- Item three
Ordered
- First
- Second
- Third
- Sub-item
- Sub-item
Task List
- Completed task
- Incomplete task
- Another incomplete task
Blockquotes
This is a blockquote.
This is a nested blockquote.
Code Blocks
Inline: console.log("hello")
Fenced with language:
function greet(name: string): string {
return `Hello, ${name}!`;
}
Fenced without language:
plain code block
no syntax highlighting
Indented code block:
four spaces
makes a code block
Tables
| Left | Center | Right |
|---|---|---|
| A1 | B1 | C1 |
| A2 | B2 | C2 |
| A3 | B3 | C3 |
Horizontal Rules
HTML (inline)
Click to expand
Hidden content inside a details block.
Escapes and Special Characters
*not italic* and `not code`
Ampersand: & | Less than: < | Greater than: >
Footnotes
Here is a sentence with a footnote1.
Heading Levels
H3
H4
H5
H6
-
This is the footnote content. ↩︎