Markdown quick reference
- H1 heading —
# Heading(one per file) - H2 heading —
## Heading - H3 heading —
### Heading - Bold —
**bold** - Italic —
*italic*or_italic_ - Strikethrough —
~~strike~~ - Inline code —
`code`(backticks) - Code block — three backticks, optional language, then close with three backticks
- Bullet list —
- item(hyphen + space) - Numbered list —
1. item - Nested list — indent 2 spaces under the parent
- Link —
[text](https://url) - Image —
 - Blockquote —
> quoted text - Horizontal rule —
---on its own line - Table —
| col | col |then|---|---| - Line break inside paragraph — end the line with two spaces
- Page break (in PDF) —
<div style="break-after: page;"></div> - Escape special char — backslash, e.g.
\*not italic\* - HTML inline tags work —
<u>underline</u>,<mark>highlight</mark>,<sup>1</sup>
