Markdown Syntax

Note: use a double space at the end of a line if you're having trouble with line breaks.

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Header 1
========

Header 2
--------

**Bold Text**
__Bold Text #2__
*Emphasis/Italics*
_Emphasis/Italics #2_
~~Strikethrough~~
```citation text```

> Single
> '>'
> indents

1. Numbered list
2. 2nd one
1. With subsections
2. 2nd subsection
3. 3rd one
* unordered subsection
4. 4th one

---

* Unordered list can use asterisks
- Or minuses
+ Or pluses


[Hyperlink!!!](https://www.google.com)

`single grave`


An [example][id]. Then, anywhere
else in the doc, define the link:

[id]: http://example.com/ "Title"

This is a normal paragraph.

This is a pre-formatted
code block.


- Bullet
- Points
* Somehow there's a line break above this nested entry
- Another one with an extra space
- And end

Text Text Text Text Text (Standard)
*Text Text Text Text Text* (Italics 1)
_Text Text Text Text Text_ (Italics 2)
**Text Text Text Text Text** (Bold 1)
__Text Text Text Text Text__ (Bold 2)