Markdown Rendering Test
A comprehensive test of GitHubβflavored Markdown features using placeholder text and common formatting patterns.
1. Headingsπ
H1 Headingπ
H2 Headingπ
H3 Headingπ
H4 Headingπ
H5 Headingπ
H6 Headingπ
2. Paragraphs & Line Breaksπ
Lorem ipsum dolor sit amet, consectetur adipiscing elit. This line uses a forced line break (two spaces at end).
Another paragraph without forced breaks.
3. Emphasisπ
- Italic text
- Bold text
- Bold italic text
Strikethrough- Bold with italic inside
4. Blockquotesπ
This is a blockquote. It can span multiple lines.
Nested blockquote.
5. Listsπ
Unorderedπ
- Item A
- Subitem A1
- Subitem A1a
- Subitem A1
- Item B
Orderedπ
- First
- Second
- SecondβA
- SecondβB
- Third
Task Listsπ
- Completed task
- Incomplete task
- Another task
6. Codeπ
Inline Codeπ
Use npm install to install packages.
Code Blocksπ
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet("Markdown Tester");# Bash example
echo "Hello world"
7. Tablesπ
| Column A | Column B | Column C |
|---|---|---|
| Text | Bold | Code |
| More | Data | Here |
8. Linksπ
9. Imagesπ
(Replace with your own image paths if needed)
10. Horizontal Rulesπ
11. Fenced Block With Language Highlightingπ
{
"name": "example",
"version": "1.0.0",
"private": true
}
12. HTML Support (GFM allows some)π
13. Footnotesπ
Here is a sentence with a footnote.1
14. Emoji (GFM supports emoji shortcodes)π
π π β οΈ
15. Collapsible Sections (GitHub-specific)π
Click to expand
This is hidden content revealed on click.
- It supports lists
- Bold text
Inline code
16. GitHub -style alertsπ
This is note: Neutral, informational, nonβurgent.
This is tip: Universally understood as an idea or helpful hint.
This is important: Draws attention without implying danger.
Standard warning symbol, highly recognizable.
Indicates risk or need for care, but less severe than danger.
-
This is the footnote content. β©