all repos — markup @ 6690c6f1d27a65d931002f3728c00e81a02d9189

The code we use to render README.your_favorite_markup

test/markups/README.lhs (view raw)

 1# Markdown
 2
 3Except with more magic added.
 4
 5> isPrefixOf              :: (Eq a) => [a] -> [a] -> Bool
 6> isPrefixOf [] _         =  True
 7> isPrefixOf _  []        =  False
 8> isPrefixOf (x:xs) (y:ys)=  x == y && isPrefixOf xs ys
 9
10And Haskell.  A lot of Haskell.