showdown/test/functional/makemarkdown/cases/standard/github-style-codeblock.html

14 lines
297 B
HTML
Raw Permalink Normal View History

2012-06-14 13:05:31 +08:00
<p>Define a function in javascript:</p>
<pre><code>function MyFunc(a) {
2017-12-23 21:20:14 +08:00
var s = '`';
}
2012-06-14 13:05:31 +08:00
</code></pre>
2012-06-14 13:43:46 +08:00
<p>And some HTML</p>
<pre><code class="html language-html">&lt;div&gt;HTML!&lt;/div&gt;
2015-01-16 05:21:33 +08:00
</code></pre>
2017-12-23 20:35:31 +08:00
<pre><code data-language="javascript">
function foo() {
return 'bar';
}
</code></pre>