Markdown Example

2024-01-22
Last Update: 2024-04-05

Headers

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

This text is italicized.
This text is bold.
This text is bold and italicized.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem 2.1
    • Subitem 2.2
  • Item 3

Ordered List

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

Click here to visit Example.com.

Images

Alt text

Blockquotes

This is a blockquote.

Horizontal Line


Tables

NameAgeCountry
John25USA
Maria30Brazil
Ahmed22Australia

Inline Code

This is an inline code example.

Strikethrough

This text is strikethrough.

Task Lists

  • Task 1
  • Task 2
  • Task 3

Footnotes

Here’s a sentence with a footnote1.

Code block

def greet(name):
    print(f"Hello, {name}!")

greet("John")
# Ligature test

var x = 10

x += 5

if x == 15:
    print("x is 15")

if x >= 10:
    print("x is 10 or greater")

  1. This is the footnote. ↩︎