Titles
Title 1
==
Title 2
-------
# Title 1
## Title 2
### Title 3
#### Title 4
##### Title 5
###### Title 6
Bold and italic
*Italic*
**Bold on
multiple lines**
*Italic on
multiple lines too*
__It also works with underscores__
_It also works with underscores_
__An empty line
is not allowed__
Links
[Prism](http://www.prismjs.com)
[Prism](http://www.prismjs.com "Prism")
[prism link]: http://www.prismjs.com (Prism)
[Prism] [prism link]
Lists and quotes
* This is
* an unordered list
1. This is an
2. ordered list
* *List item in italic*
* **List item in bold**
* [List item as a link](http://example.com "This is an example")
> This is a quotation
>> With another quotation inside
> _italic here_, __bold there__
> And a [link](http://example.com)
Code
Inline code between backticks `<p>Paragraph</p>`
some_code(); /* Indented
with four spaces */
some_code(); /* Indented
with a tab */
Raw HTML
> This is a quotation
> Containing <strong>raw HTML</strong>
<p>*Italic text inside HTML tag*</p>