Markdown Guide

Headers

# Header 1
## Header 2
### Header 3
    

Emphasis

*italic text*
**bold text**
    

Lists

Unordered List

- Item 1
- Item 2
  - Subitem 2.1
  - Subitem 2.2
- Item 3
    

Ordered List

1. First item
2. Second item
3. Third item
   1. Subitem 3.1
   2. Subitem 3.2
    

Links

[Link text](https://example.com)
    

Images

![Alt text](https://example.com/image.jpg)
    

Code Blocks

\`\`\`javascript
// Code goes here
console.log("Hello, Markdown!");
\`\`\`
    

Blockquotes

> This is a blockquote.
    

Horizontal Rule

---
    

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |
    

Task Lists

- [x] Task 1
- [ ] Task 2
- [ ] Task 3
    

Footnotes

Here is a footnote reference[^1].

[^1]: Footnote text goes here.
    

Line Breaks

Use two spaces at the end of a line for a  
line break.
    

Footnotes

  1. Footnote text goes here.