This site uses the Markdown syntax for easily formatting textual content in designated text areas. Following is a quick formatting guide to using Markdown:
Bulleted and numbered lists use asterisks (*) and numbers followed by periods as list markers. Used like this:
* Item 1
* Item 2
* Item 3
and this:
1. Red
2. Green
3. Blue
A paragraph is simply one or more consecutive lines of text, separated by one or more blank lines. (A blank line is any line that looks like a blank line — a line containing nothing but spaces or tabs is considered blank.) Normal paragraphs should not be indented with spaces or tabs.
Markdown treats asterisks ( * ) and underscores ( _ ) as indicators of emphasis. Text wrapped with one * or _ will become italicized; double * ‘s or _ ‘s will be bold. For example:
**Bold Text**
__Bold Text__
and:
*Italic Text*
_Italic Text_
The full documentation for the Markdown syntax can be viewed here.