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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
<h1 id="header-1">Header 1</h1>
<p>Some <em>emphasized</em>, <strong>bold</strong> and <del>striken out</del> text.</p>
<h2 id="header-2">Header 2</h2>
<p>$include(../ch2/invalid)</p>
<p>$include this $include is invalid</p>
<h3 id="header-lvl-3">Header lvl 3</h3>
<p>This will be <em>included</em> to the root <strong>element</strong></p>
<p>!include ../ch2/invalid</p>
<p>$include ../ch2/a random valid file.md</p>
<p>$include "quotes here"</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<h3 id="header-3">Header 3</h3>
<table>
<thead>
<tr class="header">
<th>Variable</th>
<th>Mean</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Price</td>
<td>10</td>
</tr>
<tr class="even">
<td>Weight</td>
<td>12</td>
</tr>
</tbody>
</table>
<p>lorem lorem..</p>
<table>
<thead>
<tr class="header">
<th>Variable</th>
<th>Mean</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td>Price</td>
<td>10</td>
</tr>
<tr class="even">
<td>Price</td>
<td>10</td>
</tr>
<tr class="odd">
<td>Price</td>
<td>10</td>
</tr>
<tr class="even">
<td>Weight</td>
<td>12</td>
</tr>
</tbody>
</table>
<h1 id="another-header-1">Another header 1</h1>
<h2 id="tables-go-here">Tables go here</h2>
<p>$tables</p>
<h2 id="fenced-tables...">Fenced tables...</h2>
<pre class="csv"><code>title: Some Title
has-header: True
---
Col1, Col2, Col3
1, 2, 3
10, 20, 30</code></pre>
<h2 id="something-else-here">Something else here</h2>
<p><a href="wiki://">Stack Overflow</a></p>
<p><a href="wiki://">pizza</a></p>
<p>What is Pandoc? <a href="wiki://">Pandoc</a></p>
<p>the end..</p>
|