all repos — markup @ 609c3b1c83d2f20bf301cfe96e4bd6e526031bfb

The code we use to render README.your_favorite_markup

Fix test fixture for Markdown/LHS rendering
Jeremy McAnally jmcanally@github.com
Thu, 08 Nov 2012 00:02:36 -0500
commit

609c3b1c83d2f20bf301cfe96e4bd6e526031bfb

parent

6690c6f1d27a65d931002f3728c00e81a02d9189

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M test/markups/README.lhs.htmltest/markups/README.lhs.html

@@ -2,7 +2,7 @@ <h1>Markdown</h1>

<p>Except with more magic added.</p> -<pre lang="haskell"><code>isPrefixOf :: (Eq a) =&gt; [a] -&gt; [a] -&gt; Bool +<pre><code class="haskell">isPrefixOf :: (Eq a) =&gt; [a] -&gt; [a] -&gt; Bool isPrefixOf [] _ = True isPrefixOf _ [] = False isPrefixOf (x:xs) (y:ys)= x == y &amp;&amp; isPrefixOf xs ys