all repos — markup @ 6c3ce3beef951796fe906541f99359f7d73363c5

The code we use to render README.your_favorite_markup

test/markups/README.lhs.html (view raw)

 1<h1>Markdown</h1>
 2
 3<p>Except with more magic added.</p>
 4
 5<pre><code class="haskell">isPrefixOf              :: (Eq a) =&gt; [a] -&gt; [a] -&gt; Bool
 6isPrefixOf [] _         =  True
 7isPrefixOf _  []        =  False
 8isPrefixOf (x:xs) (y:ys)=  x == y &amp;&amp; isPrefixOf xs ys
 9</code></pre>
10
11<p>And Haskell.  A lot of Haskell.</p>