Markdown Cheatsheet
A markdown cheatsheet that can quickly be referenced
Martin Kruger
May 04, 2019 - Posted in General
SHARE
This is a quick reference cheatsheet for Markdown.
Headings:
# h1
## h2
### h3
#### h4
##### h5
###### h6
Bold:
**bold text**
__bold text__
Italics:
*italics text*
_italics text_
Combining:
**bold and _italics_**
Strikethrough:
~~strikethrough~~
Ordered List:
1. First item
2. Second item
2.1 First nested item
2.2 Second nested item
Unordered List:
- First item
- Second item
- First nested item
- Second nested item
Links
[Normal link](https://www.example.com)
[Link with title](https://www.example.com "Title text")
Images

Blockquotes
> Quoted text that
> a person has said.
Horizontal Rule
Add 3 or more of any of the following:
Hyphens: ---
Asterisks: ***
Underscores: ___