Role uses Markdown for much of the fields and text areas that you can type into. For those who like, we specifically use Github-flavored Markdown. Here’s a quick guide touching on the various things you can do in Markdown.

Headers

# H1
## H2
### H3
#### H4
##### H5
###### H6

Bold, Italics and Strikethrough

Emphasis, aka italics, with *asterisks* or _underscores_.

Strong emphasis, aka bold, with **asterisks** or __underscores__.

Combined emphasis with **asterisks and _underscores_**.

Strikethrough uses two tildes. ~~Scratch this.~~

Lists

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

Ordered Lists
1. This
2. Is an Ordered
3. List

Task Lists
- [x] Create a Markdown FAQ Page
- [x] Add sheet controls for players in a room
- [ ] Update Maps and Tokens

Blockquotes

As you write, you can also create indented and quote-styled lines

> Make sure to add an angle symbol in front of each 
> line you want as part of that Blockquote

Inline Links

[Basic inline-style link](<https://www.playrole.com>)

[Reference-style link][Here is some text that references a link below]

[Reference-style link with number like footnote][1]

Some text to show that the reference links can follow later.

[Here is some text that references a link below]: <https://www.playrole.com>
[1]: <https://www.playrole.com>

Embedded Images

![Role Logo in White](<https://blog.playrole.com/wp-content/uploads/2020/03/Role_Logo_White.png> "Role Logo")

Code Blocks

You can wrap a single, inline code line with back ticks `Hello World`

If you want a full code block, put a 3 back ticks, followed by your code block
and then another 3 back ticks

console.log('Hello World');

Tables

You can make tables of data in your notes!

| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| This col is   | This col is   | $123  |
| left aligned  | centered      | $456  |
| by default    | which is cool | $331  |

If you want to align the content in the column, you can add colons (:) next to the dashes that separate the header cell from the rest of the table.
There must be at least 3 dashes separating each header cell.
The outer pipes (|) are optional, and you don't need to make the 
raw Markdown line up prettily. You can also use inline Markdown which is not as pretty but works!

Markdown | Less | Pretty
--- | --- | ---
*Still* | `renders` | **nicely**
1 | 2 | 3

Horizontal Rules