all repos — markup @ 407264c45a5c1b823a87e9e9bc82a740a080dfea

The code we use to render README.your_favorite_markup

Fix LHS test file
Garen Torikian gjtorikian@gmail.com
Wed, 11 Sep 2013 21:48:31 -0700
commit

407264c45a5c1b823a87e9e9bc82a740a080dfea

parent

3e48ce096ff373fedc82d4eaf200a78a7569e15b

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] -> [a] -> Bool isPrefixOf [] _ = True isPrefixOf _ [] = False isPrefixOf (x:xs) (y:ys)= x == y &amp;&amp; isPrefixOf xs ys