Age | Commit message (Expand) | Author | Files | Lines |
2012-08-29 | Fix RST reader for field lists items with body beginning after a new line | Denis Laxalde | 1 | -1/+1 |
2012-08-08 | Changes to literate haskell options. | John MacFarlane | 1 | -1/+1 |
2012-08-01 | Parsing: removed duplication of Key and Key'. | John MacFarlane | 1 | -14/+19 |
2012-08-01 | Major rewrite of markdown reader. | John MacFarlane | 1 | -2/+2 |
2012-07-26 | Fixed whitespace errors. | John MacFarlane | 1 | -26/+26 |
2012-07-25 | Changed reader parameters from ParserState to ReaderOptions. | John MacFarlane | 1 | -4/+4 |
2012-07-25 | Restored stateStandalone as readerStandalone. | John MacFarlane | 1 | -2/+5 |
2012-07-25 | Got rid of stateStandalone, which was hardly used anyway. | John MacFarlane | 1 | -3/+1 |
2012-07-25 | Moved stateTabStop to readerTabStop in ReaderOptions. | John MacFarlane | 1 | -2/+2 |
2012-07-24 | Refactored table parsers, captions now not part of core tableWith. | John MacFarlane | 1 | -2/+2 |
2012-07-20 | Use Parser as type synonym for Parsec. | John MacFarlane | 1 | -92/+92 |
2012-07-20 | Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code. | John MacFarlane | 1 | -1/+0 |
2012-07-20 | Use Text.Parsec instead of Text.ParserCombinators.Parsec. | John MacFarlane | 1 | -95/+95 |
2012-07-16 | Don't recognize inline-markup starts inside words. | John MacFarlane | 1 | -8/+17 |
2012-05-29 | RST reader: handle figures. | John MacFarlane | 1 | -0/+15 |
2012-03-25 | Oops! Forgot to munch whitespace / ignore body after directive. | Greg Maslov | 1 | -1/+4 |
2012-03-24 | Add parsing support for the rST default-role directive. | Greg Maslov | 1 | -3/+31 |
2012-03-24 | RST reader: allow :math:`...` even when not followed by blank or \. | John MacFarlane | 1 | -2/+3 |
2012-03-24 | RST reader: '\ ' is null, not escaped space. | John MacFarlane | 1 | -1/+3 |
2011-12-31 | Support for math in RST reader and writer. | John MacFarlane | 1 | -4/+5 |
2011-12-30 | Support Sphinx style math in RST reader. | John MacFarlane | 1 | -4/+35 |
2011-12-29 | Better smart quote parsing. | John MacFarlane | 1 | -1/+5 |
2011-12-05 | Parsing: Changed type of escaped to return Char | John MacFarlane | 1 | -1/+2 |
2011-08-23 | allow footnotes followed by newline without space chars | takahashim | 1 | -2/+2 |
2011-07-23 | RST reader: Partial support for labeled footnotes. | John MacFarlane | 1 | -7/+20 |
2011-04-20 | Disallow notes within notes in reST and markdown. | John MacFarlane | 1 | -5/+11 |
2011-04-11 | Allow '|' followed by newline in RST line block. | John MacFarlane | 1 | -2/+5 |
2011-03-18 | Changed uri parser so it doesn't include trailing punctuation. | John MacFarlane | 1 | -1/+1 |
2011-03-12 | Fixed bug in RST field list parser. | John MacFarlane | 1 | -7/+6 |
2011-01-28 | RST reader: skip blanklines at beginning, not all leading spaces. | John MacFarlane | 1 | -1/+1 |
2011-01-28 | RST reader: Skip blank space at beginning. | John MacFarlane | 1 | -0/+1 |
2011-01-26 | Add support for attributes in inline Code. | John MacFarlane | 1 | -1/+2 |
2011-01-26 | RST reader: Improved field lists. | John MacFarlane | 1 | -59/+56 |
2011-01-26 | RST reader: Include line breaks in raw field list parser output. | John MacFarlane | 1 | -1/+3 |
2011-01-26 | RST reader: Allow spaces in field list names. | John MacFarlane | 1 | -1/+1 |
2011-01-26 | Bumped version to 1.8; depend on pandoc-types 1.8. | John MacFarlane | 1 | -3/+5 |
2011-01-22 | RST reader: Big speed improvement (300->260ms). | John MacFarlane | 1 | -2/+2 |
2011-01-19 | Use spaceChar instead of oneOf " \t" in rst reader. | John MacFarlane | 1 | -5/+5 |
2010-12-22 | RST reader: Added unicode quote characters to specialChars. | John MacFarlane | 1 | -1/+1 |
2010-12-22 | RST reader: recouped speed loss due to addition of --smart. | John MacFarlane | 1 | -4/+4 |
2010-12-08 | RST reader: Added footnote suppport. | John MacFarlane | 1 | -3/+51 |
2010-12-07 | Made --smart work with RST reader. | John MacFarlane | 1 | -2/+3 |
2010-12-05 | Fix regression: markdown references should be case-insensitive. | John MacFarlane | 1 | -7/+8 |
2010-07-11 | Merge branch 'atlists'. Added auto-numbered example lists. | John MacFarlane | 1 | -1/+1 |
2010-07-06 | Minor comment change. | John MacFarlane | 1 | -1/+1 |
2010-07-05 | More refactoring of grid table code. | John MacFarlane | 1 | -52/+6 |
2010-07-05 | Moved generic grid table functions from RST reader -> Parsing. | John MacFarlane | 1 | -73/+6 |
2010-07-05 | Moved parsing functions from Text.Pandoc.Shared to new module. | John MacFarlane | 1 | -1/+2 |
2010-05-08 | Made KeyTable a map instead of an association list. | John MacFarlane | 1 | -19/+23 |
2010-03-27 | Implemented @ for sequentially numbered examples. | John MacFarlane | 1 | -1/+1 |