Markdown Support Showcase
A blog post designed to demonstrate most major Markdown features in one place.
Table of Contents
- Headings
- Text Formatting
- Blockquotes
- Lists
- Links & Images
- Code Blocks
- Tables
- Task Lists
- Horizontal Rules
- Footnotes
- Collapsible Sections (HTML)
- Final Notes
Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Text Formatting
- Bold text
- Italic text
- Bold and Italic
StrikethroughInline code- ==Highlighted text (extension)==
- Subscript: H
2O (extension) - Superscript: X^2^ (extension)
Blockquotes
This is a blockquote.
This is a nested blockquote.
Blockquotes can contain other Markdown.
Lists
Unordered List
- Item one
- Sub-item
- Sub-sub-item
- Sub-item
- Item two
- Item three
Ordered List
- First item
- Second item
- Third item
Mixed List
- Step one
- Note A
- Note B
- Step two
- Warning
- ⚠ Be careful
- Warning
Links & Images
Links
Images
Code Blocks
Inline Code
Use git status to check repository state.
Fenced Code Block (Shell)
git clone https://github.com/example/repo.git
cd repo
npm install