aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/RST.hs
AgeCommit message (Expand)AuthorFilesLines
2014-04-01Changed the smart punctuation parser to return Inlines rather than an Inline ...Matthew Pickering1-1/+1
2014-02-19Make rst figures true figures. Closes #1168.John MacFarlane1-1/+1
2014-02-15Enhanced Pandoc's support for rST roles.Merijn Verstraaten1-10/+81
2013-09-07Added support for LaTeX style literate Haskell code blocks in rST.Merijn Verstraaten1-6/+17
2013-09-01Use registerHeader in RST and LaTeX readers.John MacFarlane1-2/+4
2013-08-10Adjustments for new Format newtype.John MacFarlane1-0/+1
2013-06-25Fixed 'authors' metadata parsing in reST.John MacFarlane1-1/+22
2013-06-24Use new flexible metadata type.John MacFarlane1-40/+33
2013-06-18RST reader: don't insert paragraphs where docutils doesn't.John MacFarlane1-1/+6
2013-03-11Fixed spacing bugs involving code block attributes.John MacFarlane1-1/+1
2013-01-27Markdown/RST reader: Skip blank lines.John MacFarlane1-0/+1
2013-01-25RST reader: Allow anonymous form of explicit links.John MacFarlane1-0/+1
2013-01-25Use anyLine everywhere instead of 'manyTill anyChar newline'.John MacFarlane1-5/+5
2013-01-13Moved lineBlockLines to Parsing.John MacFarlane1-12/+1
2013-01-13RST reader: Refactored line block parser.John MacFarlane1-14/+10
2013-01-13RST reader: Line block improvements.John MacFarlane1-3/+8
2013-01-09Added Attr field to Header.John MacFarlane1-6/+6
2012-10-06RST reader: Don't create empty definition list for metadata field lists.John MacFarlane1-3/+3
2012-09-30RST reader: Removed 'plain' in blocks, since 'para' includes it.John MacFarlane1-1/+0
2012-09-30RST reader: Consolidate super/subscript, math into interpretedRole.John MacFarlane1-35/+26
2012-09-30RST reader: Renamed 'image' to 'subst', since it now handles more.John MacFarlane1-4/+3
2012-09-30Ignore unknown interpreted roles.John MacFarlane1-3/+12
2012-09-30RST reader: Removed requirement that directives begin at left margin.John MacFarlane1-3/+0
2012-09-30RST reader: Require whitespace after field list field names.John MacFarlane1-1/+1
2012-09-30RST reader: Consolidated rawBlock into directive.John MacFarlane1-15/+1
2012-09-30RST reader: Handle replace:: and unicode:: substitutions.John MacFarlane1-8/+77
2012-09-29RST reader: Make directive labels case-insensitive.John MacFarlane1-1/+3
2012-09-29RST reader: Folded figureBlock into directive.John MacFarlane1-14/+10
2012-09-29RST reader: Made comments a separate parser.John MacFarlane1-6/+17
2012-09-29RST reader: Folded image block handling into directive.John MacFarlane1-41/+36
2012-09-29RST reader: Folded code block parsers into directive.John MacFarlane1-18/+15
2012-09-29RST reader: Folded default-role parser into directive.John MacFarlane1-21/+8
2012-09-29Renamed removedLeadingTrailingSpace to trim.John MacFarlane1-11/+11
2012-09-29RST reader: Consolidated math block parsers into directive.John MacFarlane1-29/+9
2012-09-29RST reader: Refactored directive parser.John MacFarlane1-83/+105
2012-09-28RST reader: Support ".. code::".John MacFarlane1-1/+5
2012-09-28RST reader: Combine para/plain.John MacFarlane1-9/+10
2012-09-28RST reader: Made para parser slightly more efficient.John MacFarlane1-12/+19
2012-09-27RST reader: Use Text.Pandoc.Builder.John MacFarlane1-174/+180
2012-09-27RST reader: Support :target: on image substitutions.John MacFarlane1-26/+26
2012-09-27Added stateSubstitutions to ParserState, use for RST substitutions.John MacFarlane1-12/+18
2012-09-26RST reader: Support :target: on .. image:: blocks.John MacFarlane1-4/+8
2012-09-16RST reader: Small tweaks to raw field lists.John MacFarlane1-3/+2
2012-09-16Merge pull request #596 from dlax/rst-fieldlistsJohn MacFarlane1-2/+2
2012-09-08RST reader: Allow dashes as separator in simple tables.John MacFarlane1-1/+1
2012-08-29Allow any char but ':' in names of field lists in RST readerDenis Laxalde1-1/+1
2012-08-29Fix RST reader for field lists items with body beginning after a new lineDenis Laxalde1-1/+1
2012-08-08Changes to literate haskell options.John MacFarlane1-1/+1
2012-08-01Parsing: removed duplication of Key and Key'.John MacFarlane1-14/+19
2012-08-01Major rewrite of markdown reader.John MacFarlane1-2/+2