•LandJob Team
Markdown Rendering Test Suite
MarkdownTestTypography
Markdown Rendering Test Suite
This article is designed to test all standard Markdown syntax and GitHub Flavored Markdown (GFM) features supported by our blog system.
Typography
Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Text Formatting
- Bold text
- Italic text
- Bold and Italic text
StrikethroughtextInline Code- Link to Google
Blockquotes
This is a blockquote.
It can span multiple lines.
And can be nested.
Lists
Unordered List
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
- Item 3
Ordered List
- First item
- Second item
- Sub-item 2.1
- Sub-item 2.2
- Third item
Task List (GFM)
- Completed task
- Incomplete task
- Another incomplete task
Code
Code Blocks
JAVASCRIPTfunction greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
PYTHONdef fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))
CSS.container {
display: flex;
justify-content: center;
align-items: center;
}
Tables (GFM)
| Feature | Support | Notes |
|---|---|---|
| Tables | Yes | Pipes and dashes |
| Alignment | Yes | Left, center, right |
| Markdown | Yes | Bold inside cells |
Media
Images
Links
Horizontal Rule
HTML Support (if enabled)
Click to expand
This content is hidden by default.Ctrl + C
Mathematical Formulas (if enabled)
$E = mc^2$
Footnotes (if enabled)
Here is a simple footnote1.
Footnotes
-
This is the footnote text. ↩