Markdown Showcase
This document provides a comprehensive showcase of various Markdown syntaxes, including standard Markdown, GitHub Flavored Markdown (GFM), and Obsidian-specific features.
Standard Markdown
Headings
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
Text Formatting
This text is italic. This text is also italic.
This text is bold. This text is also bold.
This text is bold and italic. This text is also bold and italic.
This text is strikethrough.
This is inline code.
// This is a code block.
function greet(name) {
return `Hello, ${name}!`;
}Lists
Unordered List:
- Item 1
- Item 2
- Nested Item 2.1
- Nested Item 2.2
- Item 3
Ordered List:
- First item
- Second item
- Nested item 2.1
- Nested item 2.2
- Third item
Links
Reference-style link: [Google][1] [1]: https://www.google.com
Images
![]()
Blockquotes
This is a blockquote.
This is a nested blockquote.
Horizontal Rule
GitHub Flavored Markdown (GFM)
Task Lists
- Completed task
- Incomplete task
- Nested incomplete task
Tables
| Header 1 | Header 2 | Header 3 |
|---|---|---|
| Align Left | Align Center | Align Right |
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
Footnotes
Here is a sentence with a footnote. 1
Syntax Highlighting
def hello_world():
print("Hello, world!")Obsidian Markdown
WikiLinks (Internal Links)
This is a link to another note: Sample Note.
You can also link to headings: Sample Note#Headings.
And you can use an alias: This is an alias.
Callouts / Admonitions
Note
This is a note callout.
Tip
This is a tip callout.
Important
This is an important callout.
Warning
This is a warning callout.
Caution
This is a caution callout.
Embeds / Transclusions
Embed an entire note: Sample Note
Embed a specific section of a note: Sample Note#Headings
Footnotes
-
This is the footnote. ↩