Markdown

Basic Syntax

ElementMarkdown Syntax
Heading# H1
## H2
### H3
Bold**bold**
Italic*italic*
Blockquote> Blockquote
Ordered List1. First item
2. Second item
3. Third item
Unordered List- First item
- Second item
- Third item
Code`code`
Horizontal Rule---
Link[title](https://www.example.com)
Image![alt text](https://www.example.com/image.jpg)

Extended Syntax

ElementMarkdown Syntax
Table| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Fenced Code Block```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
FootnoteHere's a sentence with a footnote. [^1]
[^1]: This is the footnote.
Heading ID### My Great Heading {#custom-id}
Definition Listterm
: definition
Strikethrough~~Strikethrough.~~
Task List- [x] Task done
- [ ] To do
- [ ] Another task to do
EmojiHappiness! :joy:
HighlightLet's highlight these ==important words==.
SubscriptH~2~O
SuperscriptX^2^
Underlined<ins>Underlined</ins>