This is a draft cheat sheet. It is a work in progress and is not finished yet.
Headers
# H1 |
<h1>H1</h1> |
## H2 |
<h2>H2</h2> |
### H3 |
<h3>H3</h3> |
... |
... |
###### H6 |
<h6>H6</h6> |
Alt-H1 ====== |
<h1>Alt-H1</h1> |
Alt-H2 -------- |
<h2>Alt-H2</h2> |
Code
Inline `code` |
```language code ``` |
Horizontal Rule
*** |
Three or more |
--- |
creates a horizontal |
___ |
rule |
|
|
Emphasis
*italic* |
italic |
_italic_ |
italic |
**bold** |
bold |
__bold__ |
bold |
~~strikethrough~~ |
strikethrough
|
**one and _two_** |
one and two |
Images
|
<img src="url" title="title" alt="alt text"> |
![alt text][ref] [ref]: url "Title" |
<img src="url" title="title" alt="alt text"> |
Tables
Tables using pipes and dashes, colons can be used to align columns.
Column A | Column B | Column C
---------|:--------:|----------:
Row 1 | centered | right-aligned |
|
|
Lists
1. First Ordered List Item |
2. Another Item |
* Unordered sub Item (indent by 2) |
1. Actual numbers don't matter. |
1. Ordered sub item (indent by 2) |
- Unordered items can start with '*'. '-' or '+' |
Links
|
<a href="url">text</a> |
[text][reference] [reference]: url |
<a href="url">text</a> |
[text][#] [#]: url |
<a href="url">text</a> |
url |
<a href="url">url</a> |
<url> |
<a href="url">url</a> |
Blockquotes
> Block Quotes |
> > Multiple Levels of Quotation |
|