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
  • Item B

OrderedπŸ”—

  1. First
  2. Second
    1. Second‑A
    2. Second‑B
  3. 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 AColumn BColumn C
TextBoldCode
MoreDataHere

  • Inline link: https://example.com
  • Markdown link: Example
  • Reference link: GitHub

9. ImagesπŸ”—

(Replace with your own image paths if needed)

Placeholder Image


10. Horizontal RulesπŸ”—




11. Fenced Block With Language HighlightingπŸ”—

{
  "name": "example",
  "version": "1.0.0",
  "private": true
}

12. HTML Support (GFM allows some)πŸ”—

HTML block: This is a test of inline HTML rendering.

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.

  1. This is the footnote content. ↩