The rest of your content lives here. You can use Markdown here :)

Headers

H1 Header

H2 Header

H3 Header

H4 Header

Text Formatting

This is bold text and this is italic text. You can also use bold and italic like this. Strikethrough text and inline code.

Lists

Unordered List

  • Item 1
  • Item 2
    • Nested item 1
    • Nested item 2
  • Item 3

Ordered List

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

This is a link Link with title

Alt text for image

Code Blocks

Inline code: console.log("Hello World")

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

Tables

Column 1Column 2Column 3
Row 1DataMore data
Row 2InfoDetails
Row 3ContentExamples

Blockquotes

This is a blockquote. It can span multiple lines.

Nested blockquotes are also possible.

Horizontal Rule


Task Lists

  • Completed task
  • Incomplete task
  • Another incomplete task