Last modified on 01 Oct 2021.
Remember that, we can use normal HTML markup in markdown document.
Headings
# H1
## H2
### H3
#### H4
##### H5
###### H6
H1
===
H2
---
Bold & Italic & Strikethrough
Bold: **bold texts** or __bold texts__
Italic: *italic texts* or _italic texts_
Strikethrough: ~~~strikethrough texts~~
List
One can use indent to add the sublists.
1. Ordered item.
2. Ordered item.
3. Ordered item.
- Nested unordered item
- Unordered item.
- Unordered item.
1. Nested ordered item.
2. Nested ordered item.
1. You can write the order
1. list like
1. that
Links
[Alt](link/to/websites)
Images
![Image caption.](/link/to/images)
Codes
One can use ~~~
instead.
```python
# code blocks
```
Tables
One can use this site for quickly generate a table in markdown.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
Blockquotes
> Content of the blockquote.
> In the same paragraph of above blockquote.
Horizontal Rule
---
or
***
or
___