Sample Page

Table of Contents

Headings

H1 Heading

H2 Heading

H3 Heading

H4 Heading

H5 Heading
H6 Heading

Paragraphs and Line Breaks

This is a paragraph.
This is a new line (two spaces before this line).

This is another paragraph with multiple lines.
Notice the line breaks.


Emphasis

Bold text

Italic text

Bold and Italic text

Strikethrough text


Blockquotes

This is a blockquote.

Nested blockquote:

This is a nested blockquote.


Lists

Unordered Lists

Ordered Lists

  1. First item
  2. Second item
    1. Nested item
    2. Another nested item
      1. Deeper nested item
  3. Third item

This is a simple link

Link with title


Images

Alt text for the image

Image with title


Code Blocks

Inline code

Here is some inline code inside a paragraph.

Fenced Code Block

def hello_world():
    print("Hello, World!")

Code block with specific language

# Python code example
def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)
// JavaScript code example
function greet() {
  console.log("Hello, World!");
}

Horizontal Rule



Tables

SyntaxDescription
Header 1Content 1
Header 2Content 2
NameAgeCountry
Alice30USA
Bob25Canada
Charlie35UK

Task Lists


HTML in Markdown

This is a paragraph with bold and italic text using HTML tags.

This is a paragraph written directly in HTML.


Definition Lists

Term 1
Definition for Term 1
Term 2
Definition for Term 2

Footnotes

Here is a sentence with a footnote.1


Emojis

This is a smiley face emoji: 😄

This is a thumbs-up emoji: 👍


Escaping Characters

Use the backslash (\) to escape markdown characters:

* This is not italic.
# This is not a heading.


  1. This is the footnote text. ↩︎