all repos — markup @ 17e27f0747b6987da4b03a34bc748f64b2ac64cf

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.