Element | Markdown Syntax | Rendering |
---|---|---|
Heading | # H1 |
|
## H2 |
||
### H3 |
||
Bold | **bold text** |
Bold |
Italic | *italicized text* |
Italic |
Blockquote | > blockquote |
|
Ordered List | 1. First item |
|
2. Second item |
|
|
3. Third item |
|
|
Unordered List | - First item |
|
- Second item |
|
|
- Third item |
|
|
Code | myCode |
myCode |
Horizontal Rule | --- |
|
Link | [title](https://www.example.com) |
Link |
Image | ![alt text](image.jpg) |
|
Footnote | Here's a sentence with a footnote. [^1] |
Here's a sentence with a footnote.[1] |
Code Block
``` { "firstName": "John", "lastName": "Smith", "age": 25 } ```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
Footnote Here's a sentence with a footnote. 1
Task List
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
- Write the press release
- Update the website
- Contact the media
Footnotes
-
This is the footnote. ↩