Extended Markdown Cheatsheet#
Heading#
1
2
3
4
5
6
| # Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
|
Paragraph#
Code snippet#
block of code
1
2
3
| '''
print("Hello World")
'''
|
code within the clock of code can be selectively highlighted
1
2
3
| '''python
print("Hello World")
'''
|
Emphasis#
1
2
3
4
5
| *This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_
|
Table#
1
2
3
4
| | Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
|
Bulletpoints#
1
2
3
4
| - Bulletpoint 1
- Bulletpoint 2
- Bulletpoint 2.1
- Bulletpoint 2.2
|
or
1
2
3
4
| * Bulletpoint 1
* Bulletpoint 2
* Bulletpoint 2.1
* Bulletpoint 2.2
|
Numbered list#
1
2
3
4
5
| 1. Numbered item 1
2. Numbered item 2
3. Numbered item 3
1. Numbered item 3.1
2. Numbered item 3.2
|
or
1
2
3
4
5
| 1. Numbered item 1
1. Numbered item 2
1. Numbered item 3
1. Numbered item 3.1
1. Numbered item 3.2
|
Note that this will be rendered as normal numbered list when rendered.
Blockquotes#
Horizontal rule#
Link#
1
| [Link](https://www.google.com)
|
Image#
1
| ![Image](https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png)
|
KATeX#
KATeX is a math rendering engine that can be used to render math equations in markdown. It is supported by Github and Gitlab. It is not supported by Bitbucket.
1
2
| Block math:
$$ x^2 $$
|
This will be rendered when ran in a proper renderer.
All formulas