showdown/test/functional/makemarkdown/cases/standard/github-style-codeblock.html
Estevao Soares dos Santos 173ad51b05 test: fix tests
2017-12-23 13:20:14 +00:00

14 lines
297 B
HTML

<p>Define a function in javascript:</p>
<pre><code>function MyFunc(a) {
var s = '`';
}
</code></pre>
<p>And some HTML</p>
<pre><code class="html language-html">&lt;div&gt;HTML!&lt;/div&gt;
</code></pre>
<pre><code data-language="javascript">
function foo() {
return 'bar';
}
</code></pre>