From 39f6af5de4f4059239fbeda4095d8f92b98912d3 Mon Sep 17 00:00:00 2001 From: fiddlosopher Date: Sat, 21 Nov 2009 04:40:59 +0000 Subject: Modified html+lhs output to use 'haskell' highlighter. The bird tracks are added in the highlighting module. This makes sense, because the kate's haskell highlighter is much better than the literateHaskell highlighter. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1620 788f1e2b-df1e-0410-8736-df70ead52e1b --- tests/lhs-test.fragment.html+lhs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'tests/lhs-test.fragment.html+lhs') diff --git a/tests/lhs-test.fragment.html+lhs b/tests/lhs-test.fragment.html+lhs index 2100db251..fec6bb750 100644 --- a/tests/lhs-test.fragment.html+lhs +++ b/tests/lhs-test.fragment.html+lhs @@ -5,28 +5,28 @@ >unsplit is an arrow that takes a pair of values and combines them to return a single value:

>>  unsplit ::unsplit :: (Arrow a) => (b -> c -> d) -> a (b, c) d
>> unsplit = arr . unsplit = arr . uncurry
>> -- arr (\op (x,y) -> x `op` y)