aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/HTML.hs
AgeCommit message (Expand)AuthorFilesLines
2014-04-11HTML reader: Treat processing instructions & declarations as block.John MacFarlane1-5/+9
2014-04-05HTML reader: Updated `closes` with rules from HTML5 spec.John MacFarlane1-5/+12
2014-04-01HTML reader: idiomatic rewriting for clarity.John MacFarlane1-5/+4
2014-04-01Converted HTML reader to use builder. Fixes #1162.Matthew Pickering1-109/+126
2014-01-20HTML reader: Fixed bug reading inline math with `$$`.John MacFarlane1-2/+2
2014-01-01HTML reader: Parse name/content pairs from meta tags as metadata.John MacFarlane1-1/+10
2013-12-19HLint: use fromMaybeHenry de Valence1-2/+2
2013-12-06HTML reader: Parse LaTeX math if appropriate options are set.John MacFarlane1-1/+8
2013-11-07recognize svg tag in HTML ReaderMinRK1-1/+1
2013-11-03HTML reader: Use pandoc Div and Span for raw "<div>", "<span>".John MacFarlane1-10/+25
2013-08-10Adjustments for new Format newtype.John MacFarlane1-2/+2
2013-07-16HTML reader: read widths from col tags if present.John MacFarlane1-6/+23
2013-07-16HTML reader: Handle non-simple tables (#893).John MacFarlane1-3/+9
2013-07-16HTML reader: Generalized table parser.John MacFarlane1-4/+9
2013-06-24Use new flexible metadata type.John MacFarlane1-23/+20
2013-03-28Parsing: Better error reporting in readWith.John MacFarlane1-1/+4
2013-02-16HTML reader: Preserve all header attributes.John MacFarlane1-2/+4
2013-01-30HTML reader: Handle colgroup tag.John MacFarlane1-1/+2
2013-01-12HTML reader: Added html5 tags to list of block-level tags.John MacFarlane1-5/+8
2013-01-09Added Attr field to Header.John MacFarlane1-2/+4
2012-09-15HTML reader: Modified htmlTag for fewer false positives.John MacFarlane1-1/+1
2012-09-13MediaWiki reader: Use MWState instead of ParserState.John MacFarlane1-1/+1
2012-09-09HTML reader: Handle nested `<q>` tags properly.John MacFarlane1-1/+9
2012-09-09HTML reader: Parse <q> as Quoted DoubleQuote.John MacFarlane1-0/+4
2012-08-15Moved renderTags' from HTML reader & SelfContained to Shared.John MacFarlane1-13/+1
2012-07-26Fixed whitespace errors.John MacFarlane1-5/+5
2012-07-26Use readerExtensions instead of readerStrict in readers.John MacFarlane1-26/+19
2012-07-25Changed reader parameters from ParserState to ReaderOptions.John MacFarlane1-3/+3
2012-07-25Moved ParseRaw from ParserState to ReaderOptions.John MacFarlane1-4/+4
2012-07-25Options -> ReaderOptions.John MacFarlane1-2/+2
2012-07-25Put smart, strict in separate options field in state.John MacFarlane1-2/+3
2012-07-24HTML reader: Fixed bug in htmlBalanced.John MacFarlane1-2/+1
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane1-8/+8
2012-07-20Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.John MacFarlane1-2/+0
2012-07-20Use Text.Parsec instead of Text.ParserCombinators.Parsec.John MacFarlane1-12/+12
2012-04-29HTML reader: Support `<col>` and `<caption>` in tables.John MacFarlane1-1/+3
2012-04-28HTML reader: Don't skip nonbreaking spaces.John MacFarlane1-1/+7
2012-02-17Don't escape `<` in `<style>` tags with `--self-contained`.John MacFarlane1-2/+10
2012-01-12Added "title" to list of docbook block-level tags.John MacFarlane1-1/+1
2011-12-29Better smart quote parsing.John MacFarlane1-2/+6
2011-10-25HTML reader now recognizes DocBook block and inline tags.John MacFarlane1-5/+24
2011-08-01HTML reader: Fixed bug parsing tables w both thead and tbody.John MacFarlane1-0/+1
2011-07-23Properly handle characters in the 128..159 range.John MacFarlane1-2/+41
2011-07-16HTML reader: treat Plain as Para when needed.John MacFarlane1-9/+12
2011-07-15HTML reader: Handle tbody, thead in simple tables.John MacFarlane1-7/+17
2011-07-10Make HTML reader more forgiving of bad HTML.John MacFarlane1-4/+16
2011-01-26Add support for attributes in inline Code.John MacFarlane1-2/+6
2011-01-26Bumped version to 1.8; depend on pandoc-types 1.8.John MacFarlane1-2/+2
2011-01-14HTML reader: parse simple tables.John MacFarlane1-2/+22
2011-01-14HTML reader: parse location tags in pSatisfy.John MacFarlane1-13/+17