Basic usages of markdown. A good list can be found here
// use pound sign for headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6// blockqoute and nested blockqoute
> first level blockqoute
>
>> second level nested blockqoute
>
>>> third level nested blockqoutefirst level blockqoute
second level nested blockqoute
third level nested blockqoute
// just start it in number
1. first list itemfunction publicMethod() { privateMethod() };