mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
7d0436d210
When using html pre/code tags to wrap github's fenced code block syntax, showdown would parsed them instead of treating them like plain code. Closes #229
17 lines
302 B
HTML
17 lines
302 B
HTML
<ol>
|
|
<li>
|
|
<p>Hi, I am a thing</p>
|
|
|
|
<pre><code class="sh language-sh">$ git clone thing.git
|
|
|
|
dfgdfg
|
|
</code></pre></li>
|
|
<li>
|
|
<p>I am another thing!</p>
|
|
|
|
<pre><code class="sh language-sh">$ git clone other-thing.git
|
|
|
|
foobar
|
|
</code></pre></li>
|
|
</ol>
|