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 | Underscores |
~~Strikethrough~~ | — | Shift+S | Option+S | |
# Heading 1 | Heading 1 ========= | Ctrl+Alt+1 | Command+Option+1 | Heading 1 |
## Heading 2 | Heading 2 ———– | Ctrl+Alt+2 | Command+Option+2 | Heading 2 |
[Link](http://a.com) | [Link][1] ⁝ [1]: http://b.org | Ctrl+L | Command+L | Link |
![Image](http://url/a.png) | ![Image][1] ⁝ [1]: http://url/b.jpg | Ctrl+Shift+I | Command+Option+I | |
> Blockquote | — | Ctrl+Q | Command+Q | Blockquote |
A paragraph. A paragraph after 1 blank line. | — | — | — | A paragraph. A paragraph after 1 blank line. |
* List | – List | Ctrl+U | Command+U |
|
1. One | 1) One | Ctrl+Shift+O | Command+Option+O |
|
Horizontal Rule ———– | Horizontal Rule *********** | Ctrl+H | Command+H | Horizontal Rule |
`Inline code` with backticks | — | Ctrl+Alt+C | Command+Option+C | Inline code with backticks |
“` def whatever(foo): return foo “` | with tab / 4 spaces ….def whatever(foo): …. return foo | Ctrl+Alt+P | Command+Option+P | def whatever(foo): |