blob: ddcb0210b42e9b51183f01fca5f9298bc0af237c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<h1>Em example</h1>
<p>This is an example of *Em*.
</p>
<ul><li>Here is an
unordered list item.
</li><li>Here is another.
</li>
</ul>
<ol><li>Here is an
ordered list item.
</li><li>Here is another.
</li>
</ol>
<ul><li>Here is a list
</li><ul>
<li>With another list inside it
</li>
</ul>
</ul>
<dl><dt>term</dt><dd>definition
</dd><dt>long term</dt><dd>long
definition
</dd>
</dl>
<pre>code block
</pre>
|