aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Native.hs
AgeCommit message (Collapse)AuthorFilesLines
2012-08-09Use safeRead instead of using reads directly (various modules).John MacFarlane1-15/+16
2012-07-26Fixed whitespace errors.John MacFarlane1-1/+1
2011-01-21Haddock comment improvements.John MacFarlane1-1/+2
2011-01-19Added Text.Pandoc.Readers.Native (readNative).John MacFarlane1-0/+80
readNative can now read full pandoc documents, block lists, blocks, inline lists, or inlines. It will interpret Str "hi" as if it were Pandoc (Meta [] [] []) [Plain [Str "hi"]] This should make testing easier.