aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/RST.hs
AgeCommit message (Expand)AuthorFilesLines
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
2011-01-26RST reader: Improved field lists.John MacFarlane1-59/+56
2011-01-26RST reader: Include line breaks in raw field list parser output.John MacFarlane1-1/+3
2011-01-26RST reader: Allow spaces in field list names.John MacFarlane1-1/+1
2011-01-26Bumped version to 1.8; depend on pandoc-types 1.8.John MacFarlane1-3/+5
2011-01-22RST reader: Big speed improvement (300->260ms).John MacFarlane1-2/+2
2011-01-19Use spaceChar instead of oneOf " \t" in rst reader.John MacFarlane1-5/+5
2010-12-22RST reader: Added unicode quote characters to specialChars.John MacFarlane1-1/+1
2010-12-22RST reader: recouped speed loss due to addition of --smart.John MacFarlane1-4/+4
2010-12-08RST reader: Added footnote suppport.John MacFarlane1-3/+51
2010-12-07Made --smart work with RST reader.John MacFarlane1-2/+3
2010-12-05Fix regression: markdown references should be case-insensitive.John MacFarlane1-7/+8
2010-07-11Merge branch 'atlists'. Added auto-numbered example lists.John MacFarlane1-1/+1
2010-07-06Minor comment change.John MacFarlane1-1/+1
2010-07-05More refactoring of grid table code.John MacFarlane1-52/+6
2010-07-05Moved generic grid table functions from RST reader -> Parsing.John MacFarlane1-73/+6
2010-07-05Moved parsing functions from Text.Pandoc.Shared to new module.John MacFarlane1-1/+2
2010-05-08Made KeyTable a map instead of an association list.John MacFarlane1-19/+23
2010-03-27Implemented @ for sequentially numbered examples.John MacFarlane1-1/+1
2010-03-23Properly escape URIs in all readers.John MacFarlane1-18/+19
2010-03-23Updated copyright notices.John MacFarlane1-2/+2
2010-02-27RST reader: Improved grid tables.fiddlosopher1-20/+34
2010-02-20Incomplete support for RST tables (simple and grid).fiddlosopher1-2/+193