parsedown/tests/test_data/code_block.html
hkdobrev 87c0b4264a Renamed tests/tests to tests/test_data
When looking at your folder structure, it is easier to grasp that the .md and .html files are just your data for the tests
2013-07-20 09:06:33 +03:00

9 lines
191 B
HTML

<p>Here's a regular code block:</p>
<pre><code>&lt;?php
echo 'Hello World!';
?&gt;</code></pre>
<p>Here's one that holds a list:</p>
<pre><code>- list item
- another list item</code></pre>