markdown

Basic Syntax

ElementMarkdown Syntax
Headings # H1
## H2
### H3
Bold**Bold Text**
Italics*Italics*
Blockquote> A quote string
Ordered List1. First item
2. Second item
3. Third item
Unordered List– First
– Second
– Third
Code` Good ol’ backticks `
Horizontal Rule– – –
Hyperlink[title](https://www.example.com)
Image![alt text](image.jpg)

Extended Syntax

ElementMarkdown Syntax
Table | Syntax | Description |
| ———– | ———– |
| Header | Title |
| Paragraph | Text |
Fenced Code Block“`
{
  “firstName”: “I’m”,
  “lastName”: “In”,
  “age”: Jail
}
“`
FootnoteHere’s a sentence with a footnote. [^1]

[^1]: This is the footnote.
Heading ID### My Great Heading {#custom-id}
Definition Listterm
: definition
Strikethrough~~The world is flat.~~
Task List– [x] Write the press release
– [ ] Update the website
– [ ] Contact the media
Emoji:HappyFace:
HighlightI need to highlight these ==very important words==.