Basic Syntax
- Heading
1 | # H1 |
- Bold
1 | **bold text** |
- Italic
1 | *italicized text* |
- Blockquote
1 | > blockquote |
- Ordered List
1 | 1. First item |
- Unordered List
1 | - First item |
- Code
1 | `code` |
- Horizontal Rule
1 | --- |
- Link
1 | [title](https://www.example.com) |
- Image
1 | ![alt text](image.jpg) |
Extended Syntax
- Table
1 | | Syntax | Description | |
- Fenced Code Block
1 | { |
- Footnote
1 | Here's a sentence with a footnote. [^1] |
- Heading ID
1 | ### My Great Heading {#custom-id} |
- Definition List
1 | term |
- Strikethrough
1 | ~~The world is flat.~~ |
- Task List
1 | - [x] Write the press release |