-
Notifications
You must be signed in to change notification settings - Fork 78
Learn markdown in 3 minutes
waltherg edited this page Jun 11, 2013
·
7 revisions
Markdown syntax is extremely simple and you can learn all you need to know within a few minutes.
Also refer to this excellent cheatsheet.
# First level
## Second Level
### Third level
#### Fourth level
##### Fifth level
###### Sixth level
Bold: **some text**
Italics: _some other text_
Also italics: *this is also italics*
[link text](link)
example: [click here for a web page](http://google.com)
Figures are formatted the same as links but just add a !
before the square bracked.
![text description](/path/to/image)
You can have a picture with a link:
[![text description](/path/to/image)](http://twitter.com)
***
or
---
Inline code: `some code`
Code block:
some code
and another line of code
some more code
Subscript (Pandoc only)
R~0~
Superscript (Pandoc only)
x^2^
That's most of the formatting you'll need to get by. I'll get into citation and table formatting on a separate page.