aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers.hs
AgeCommit message (Collapse)AuthorFilesLines
2017-06-19Added Vimwiki reader (#3705).Yuchen Pei1-0/+3
* New module Text.Pandoc.Readers.Vimwiki, exporting readVimwiki [API change]. * New input format `vimwiki`. * New data file, `data/vimwiki.css`, for displaying the HTML produced by this reader and pandoc's HTML writer in the style of vimwiki's own HTML export.
2017-06-19Add Muse reader (#3620)Alexander Krotov1-0/+3
2017-06-10Changed all readers to take Text instead of String.John MacFarlane1-1/+0
Readers: Renamed StringReader -> TextReader. Updated tests. API change.
2017-06-10Readers: Changed StringReader -> TextReader.John MacFarlane1-23/+26
2017-04-26API change: move reader functions to Text.Pandoc.ReadersAlbert Krewinkel1-0/+146
Reader helper functions were defined in the top-level Text.Pandoc module. These functions are moved to the Readers submodule as to enable reuse in other submodules.