Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed https://markdown-it.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

24 lines
698 B

<p>This is a fenced code block:</p>
<pre><code class="haskell">pairs :: [(Int,Char)]
pairs = [(x,y) | x &lt;- [0..10], y &lt;- ['a'..'z']]
</code></pre>
<p>Here is one with tildes:</p>
<pre><code class="haskell">pairs :: [(Int,Char)]
pairs = [(x,y) | x &lt;- [0..10], y &lt;- ['a'..'z']]
</code></pre>
<p>More metadata:</p>
<pre><code class="haskell">pairs :: [(Int,Char)]
pairs = [(x,y) | x &lt;- [0..10], y &lt;- ['a'..'z']]
</code></pre>
<p>More backticks:</p>
<pre><code class="haskell">pairs :: [(Int,Char)]
pairs = [(x,y) | x &lt;- [0..10], y &lt;- ['a'..'z']]
backticks :: String
backticks = &quot;`````&quot;
</code></pre>
<p>Without an end:</p>
<pre><code>code with
no end
</code></pre>