Markup Examples
Markup Examples
This page demonstrates various Markdown and HTML markup used throughout the site.
Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
Emphasis
This is italic text and bold text.
You can also use italic and bold styles.
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
Code
Inline code looks like this.
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 |
Blockquotes
This is a blockquote. It can span multiple lines and contains multiple paragraphs.
It supports bold and italic text.
End of markup examples