Markdown Guide
This guide is powered by Markdown
Date: July 2022
- Notes
This guide is powered by Markdown. For the full documentation, click here
| Code | Or | Linux/Windows | Mac OS | ... to Get |
|---|---|---|---|---|
*Italic* | _Italic_ | Ctrl+I | Command+I | Italic |
**Bold** | __Bold__ | Ctrl+B | Command+B | Bold |
++Underscores++ | — | Shift+U | Option+U | <ins>Underscores</ins> |
~~Strikethrough~~ | — | Shift+S | Option+S | |
# Heading 1 | Heading 1<br>========= | Ctrl+Alt+1 | Command+Option+1 | # Heading 1 |
## Heading 2 | Heading 2<br>--------- | Ctrl+Alt+2 | Command+Option+2 | ## Heading 2 |
[Link](http://a.com) | [Link][1]<br>[1]: http://b.org | Ctrl+L | Command+L | Link |
 | ![Image][1]<br>[1]: http://url/b.jpg | Ctrl+Shift+I | Command+Option+I | Image |
> Blockquote | — | Ctrl+Q | Command+Q | > Blockquote |
| A paragraph.<br><br>A paragraph after 1 blank line. | — | — | — | Two separate paragraphs |
* List<br>* List<br>* List | - List<br>- List<br>- List | Ctrl+U | Command+U | • List |
1. One<br>2. Two<br>3. Three | 1) One<br>2) Two<br>3) Three | Ctrl+Shift+O | Command+Option+O | 1. One 2. Two 3. Three |
Horizontal Rule<br>----------- | Horizontal Rule<br>*********** | Ctrl+H | Command+H | --- |
`Inline code` | — | Ctrl+Alt+C | Command+Option+C | Inline code |
```python<br>def whatever(foo):<br> return foo<br>``` | — | Ctrl+Alt+P | Command+Option+P | Code block |
$ a^2 + b^2 $ | — | — | — | Inline formula |
$$ a^2 + b^2 $$ | — | — | — | Centered formula |