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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<h1 id="using-headings-to-test-toc-and-markdown-in-html-together">Using headings to test toc and markdown-in-html together</h1>
<ul>
<li>apples</li>
<li>bananas</li>
</ul>
<div>
<p>This is <em>true</em> markdown text.</p>
</div>
<div class="bar">
<h2 id="this-too">This <strong>too</strong>.</h2>
<p>And a paragraph</p>
</div>
<div class="foo">
<p>And <strong>this</strong>.</p>
</div>
<section>
<p>And even <strong>this</strong> in an HTML5 block tag.</p>
</section>
<h1 id="veggies">Veggies</h1>
<ul>
<li>carrots</li>
<li>lettuce</li>
</ul>
<!-- This isn't currently supported (as it is in PHP Markdown), but it
might be one day. -->
<table>
<tr>
<td markdown="1">This is *true* markdown text.</td>
</tr>
</table>
|