Age | Commit message (Expand) | Author | Files | Lines |
2014-08-04 | HTML reader: ignore <?xml..> and <DOCTYPE..> tags. | John MacFarlane | 1 | -1/+1 |
2014-08-04 | Use texmath 0.7 interface. | John MacFarlane | 1 | -2/+2 |
2014-07-31 | HTML Reader: Added ability to read MathML formatted <math> blocks | Matthew Pickering | 1 | -0/+16 |
2014-07-31 | HTML Reader: Added support for anchors on links and list items | Matthew Pickering | 1 | -4/+22 |
2014-07-31 | HTML Reader: Extended HTML Reader to recognise EPUB specific elements | Matthew Pickering | 1 | -28/+178 |
2014-07-26 | Generalised more in Parsing.hs to enable the use of custom state | Matthew Pickering | 1 | -18/+61 |
2014-07-20 | HTML reader: parse Div and Span elements even without `--parse-raw`. | John MacFarlane | 1 | -2/+0 |
2014-07-11 | Removed (>>~) function | Matthew Pickering | 1 | -3/+3 |
2014-07-07 | HTML reader: adjust `blockTags` and `eitherBlockOrInline`. | John MacFarlane | 1 | -9/+13 |
2014-06-20 | HTML reader: Fix performance issue with malformed HTML tables. | John MacFarlane | 1 | -0/+2 |
2014-06-20 | Support --trace in HTML reader. | John MacFarlane | 1 | -1/+10 |
2014-06-19 | HTML reader: Allow space between `<col>` and `</col>`. | John MacFarlane | 1 | -0/+1 |
2014-06-16 | HTML reader: Fixed major parsing problem with HTML tables. | John MacFarlane | 1 | -15/+11 |
2014-06-16 | Moved extractSpaces to Shared.hs | mpickering | 1 | -13/+4 |
2014-05-09 | Update copyright notices for 2014, add missing notices | Albert Krewinkel | 1 | -2/+2 |
2014-04-11 | HTML reader: Treat processing instructions & declarations as block. | John MacFarlane | 1 | -5/+9 |
2014-04-05 | HTML reader: Updated `closes` with rules from HTML5 spec. | John MacFarlane | 1 | -5/+12 |
2014-04-01 | HTML reader: idiomatic rewriting for clarity. | John MacFarlane | 1 | -5/+4 |
2014-04-01 | Converted HTML reader to use builder. Fixes #1162. | Matthew Pickering | 1 | -109/+126 |
2014-01-20 | HTML reader: Fixed bug reading inline math with `$$`. | John MacFarlane | 1 | -2/+2 |
2014-01-01 | HTML reader: Parse name/content pairs from meta tags as metadata. | John MacFarlane | 1 | -1/+10 |
2013-12-19 | HLint: use fromMaybe | Henry de Valence | 1 | -2/+2 |
2013-12-06 | HTML reader: Parse LaTeX math if appropriate options are set. | John MacFarlane | 1 | -1/+8 |
2013-11-07 | recognize svg tag in HTML Reader | MinRK | 1 | -1/+1 |
2013-11-03 | HTML reader: Use pandoc Div and Span for raw "<div>", "<span>". | John MacFarlane | 1 | -10/+25 |
2013-08-10 | Adjustments for new Format newtype. | John MacFarlane | 1 | -2/+2 |
2013-07-16 | HTML reader: read widths from col tags if present. | John MacFarlane | 1 | -6/+23 |
2013-07-16 | HTML reader: Handle non-simple tables (#893). | John MacFarlane | 1 | -3/+9 |
2013-07-16 | HTML reader: Generalized table parser. | John MacFarlane | 1 | -4/+9 |
2013-06-24 | Use new flexible metadata type. | John MacFarlane | 1 | -23/+20 |
2013-03-28 | Parsing: Better error reporting in readWith. | John MacFarlane | 1 | -1/+4 |
2013-02-16 | HTML reader: Preserve all header attributes. | John MacFarlane | 1 | -2/+4 |
2013-01-30 | HTML reader: Handle colgroup tag. | John MacFarlane | 1 | -1/+2 |
2013-01-12 | HTML reader: Added html5 tags to list of block-level tags. | John MacFarlane | 1 | -5/+8 |
2013-01-09 | Added Attr field to Header. | John MacFarlane | 1 | -2/+4 |
2012-09-15 | HTML reader: Modified htmlTag for fewer false positives. | John MacFarlane | 1 | -1/+1 |
2012-09-13 | MediaWiki reader: Use MWState instead of ParserState. | John MacFarlane | 1 | -1/+1 |
2012-09-09 | HTML reader: Handle nested `<q>` tags properly. | John MacFarlane | 1 | -1/+9 |
2012-09-09 | HTML reader: Parse <q> as Quoted DoubleQuote. | John MacFarlane | 1 | -0/+4 |
2012-08-15 | Moved renderTags' from HTML reader & SelfContained to Shared. | John MacFarlane | 1 | -13/+1 |
2012-07-26 | Fixed whitespace errors. | John MacFarlane | 1 | -5/+5 |
2012-07-26 | Use readerExtensions instead of readerStrict in readers. | John MacFarlane | 1 | -26/+19 |
2012-07-25 | Changed reader parameters from ParserState to ReaderOptions. | John MacFarlane | 1 | -3/+3 |
2012-07-25 | Moved ParseRaw from ParserState to ReaderOptions. | John MacFarlane | 1 | -4/+4 |
2012-07-25 | Options -> ReaderOptions. | John MacFarlane | 1 | -2/+2 |
2012-07-25 | Put smart, strict in separate options field in state. | John MacFarlane | 1 | -2/+3 |
2012-07-24 | HTML reader: Fixed bug in htmlBalanced. | John MacFarlane | 1 | -2/+1 |
2012-07-20 | Use Parser as type synonym for Parsec. | John MacFarlane | 1 | -8/+8 |
2012-07-20 | Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code. | John MacFarlane | 1 | -2/+0 |
2012-07-20 | Use Text.Parsec instead of Text.ParserCombinators.Parsec. | John MacFarlane | 1 | -12/+12 |