aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/RST.hs
AgeCommit message (Expand)AuthorFilesLines
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
2012-07-26Fixed whitespace errors.John MacFarlane1-26/+26
2012-07-25Changed reader parameters from ParserState to ReaderOptions.John MacFarlane1-4/+4
2012-07-25Restored stateStandalone as readerStandalone.John MacFarlane1-2/+5
2012-07-25Got rid of stateStandalone, which was hardly used anyway.John MacFarlane1-3/+1
2012-07-25Moved stateTabStop to readerTabStop in ReaderOptions.John MacFarlane1-2/+2
2012-07-24Refactored table parsers, captions now not part of core tableWith.John MacFarlane1-2/+2
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane1-92/+92
2012-07-20Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.John MacFarlane1-1/+0
2012-07-20Use Text.Parsec instead of Text.ParserCombinators.Parsec.John MacFarlane1-95/+95
2012-07-16Don't recognize inline-markup starts inside words.John MacFarlane1-8/+17
2012-05-29RST reader: handle figures.John MacFarlane1-0/+15
2012-03-25Oops! Forgot to munch whitespace / ignore body after directive.Greg Maslov1-1/+4
2012-03-24Add parsing support for the rST default-role directive.Greg Maslov1-3/+31
2012-03-24RST reader: allow :math:`...` even when not followed by blank or \.John MacFarlane1-2/+3
2012-03-24RST reader: '\ ' is null, not escaped space.John MacFarlane1-1/+3
2011-12-31Support for math in RST reader and writer.John MacFarlane1-4/+5
2011-12-30Support Sphinx style math in RST reader.John MacFarlane1-4/+35
2011-12-29Better smart quote parsing.John MacFarlane1-1/+5
2011-12-05Parsing: Changed type of escaped to return CharJohn MacFarlane1-1/+2
2011-08-23allow footnotes followed by newline without space charstakahashim1-2/+2
2011-07-23RST reader: Partial support for labeled footnotes.John MacFarlane1-7/+20
2011-04-20Disallow notes within notes in reST and markdown.John MacFarlane1-5/+11
2011-04-11Allow '|' followed by newline in RST line block.John MacFarlane1-2/+5
2011-03-18Changed uri parser so it doesn't include trailing punctuation.John MacFarlane1-1/+1
2011-03-12Fixed bug in RST field list parser.John MacFarlane1-7/+6
2011-01-28RST reader: skip blanklines at beginning, not all leading spaces.John MacFarlane1-1/+1
2011-01-28RST reader: Skip blank space at beginning.John MacFarlane1-0/+1
2011-01-26Add support for attributes in inline Code.John MacFarlane1-1/+2