Markdown language
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
This is bold text and this is italic text. You can also use underscores for italic and double underscores for bold. This is bold and italic combined. Here's strikethrough text.
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 and Images
Inline link https://example.com ; Also https://example.com ;
Blockquotes
This is a blockquote.
It can span multiple lines.
Nested blockquotes are also possible.
Code
Inline code
looks like this.
# Code block with syntax highlighting
def hello_world():
print("Hello, world!")
Tables
Header 1 | Header 2 | Header 3 |
---|---|---|
Cell 1 | Cell 2 | Cell 3 |
Cell 4 | Cell 5 | Cell 6 |
Cell 7 | Cell 8 | Cell 9 |
Horizontal Rule
Task Lists
- Completed task
- Incomplete task
- Another task
Footnotes
Here's a sentence with a footnote.[^1]
[^1]: This is the footnote content.
Emoji (supported in some Markdown flavors)
:smile: :heart: :thumbsup:
Definition Lists
Term 1
: Definition 1
Term 2
: Definition 2
Escape Characters
*This text is surrounded by asterisks but not italic*