Markdown Cheatsheet

This is a quick reference for the Markdown syntax supported in the editor. Other Markdown syntax may work but is not guaranteed.

Headers

# H1
## H2
### H3

Emphasis

Some of these words *are emphasised*.
Some of these words _are emphasised also_.

Use two asterisks for **strong emphasis**.
Or, if you prefer, __use two underscores instead__.

Lists

* Unordered list can use asterisks
- Or minuses
+ Or pluses
1. Ordered lists begin with a number followed by a period (.)
2. Red
3. Green

Links

This is an [example link](http://example.com/).
This is an [example link](http://example.com/ "With a Title").

Escaping Special Characters

If you need to use special Markdown characters verbatim (eg. #, _, *, [) you can escape them by adding a backslash (\) in front of the character.

For example, to have a single line of hashtags display as is instead of as a Markdown heading:

\#hashtag1 #hashtag2 #hashtag3