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

Ordered List

  1. First item
  2. Second item
    1. Nested item 2.1
    2. Nested item 2.2
  3. Third item

This is a link

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