this page is a bit broken right now
To escape use \\
# Heading1
## Heading2
### Heading3
#### Heading4
##### Heading5
###### Heading6
####{heading-id} Heading (new, makes heading-id the id of this heading)
* Bullet points
+ Plus
- Minus
1. Numbered list
2. Can be
4. Any number
. or just a dot (new),
can also indent
> Blockquotes
>
> can _be_ **formatted**
```
Code blocks
Have no formatting
HTML & chars < automatically > escaped
```
Inline formatting:
Link: [text](url)
[text **can have formatting**](url "tooltip text")
Image: 

Superscript (new): 4^(3) = 64
Subscript (new): a[n] = 2n + 1
Bold: **text**
Underline: __text__
italic: *text* _text_
Strikethrough: ~~text~~
Inline code (has formatting!): `text`
Checkboxes anywhere in the document, not just lists: [ ] [x]
Raw text with curly braces (new): {aaaa **aa** <span>angle brackets not escaped for raw HTML</span>}
Nested curly braces: {aa {bb} cc {dd {ee}} ff}
Inline code without formatting, can escape HTML chars: `{1 \< 3 ? _ * 3 + 3 * _ + 2 ** 2 ** 2 : 4 \& 2}`
Inline HTML (no formatting inside): <table>
<tbody>
<tr>
<td>a 1</td>
<td>a 2</td>
</tr>
<tr>
<td>b 1</td>
<td>b 2</td>
</tr>
</tbody>
</table>
To escape use \
Blockquotes
can be formatted
Code blocks
Have no formatting
HTML & chars < automatically > escaped
Inline formatting:
Link: text
text can have formatting
Image:
Superscript (new): 43 = 64
Subscript (new): an = 2n + 1
Bold: text
Underline: text
italic: text text
Strikethrough:
text
Inline code (has formatting!): text
Checkboxes anywhere in the document, not just lists:
Raw text with curly braces (new): aaaa **aa** angle brackets not escaped for raw HTML
Nested curly braces: aa {bb} cc {dd {ee}} ff
Inline code without formatting, can escape HTML chars: 1 < 3 ? _ * 3 + 3 * _ + 2 ** 2 ** 2 : 4 & 2
Inline HTML (no formatting inside):
| a 1 | a 2 |
| b 1 | b 2 |