all repos — markup @ b183c895c6495de2ab89dec7ff6b0bc7d8a82eb7

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] -> [a] -> 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>