Text editing uses a fairly simple text formatting system known as Markdown. Markdown was invented to allow you to easily apply simple formatting options to your text without the need to know the HTML language. Here are some of the essential options that Markdown provides:
*this is italic*
**I'm a bold snippet**
* This is a list * Which has bullet items 1. While this list 2. Is numberedTake care to put a single space in front of each list item. If you want to create several levels of lists, increase the number of spaces before each level of the list.
[Link title](http://your.link.address.com)

This is a large heading ======================= This is a smaller heading -------------------------
> Lorem ipsum dolor sit amet, consectetur adipisici elit, > sed eiusmod tempor incidunt ut labore et dolore magna aliqua.
Lorem ipsum (((dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt ut labore et dolore magna aliqua.)))
For a more complete reference of the Markdown options, check out the full documentation.