aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/HTML.hs
AgeCommit message (Expand)AuthorFilesLines
2016-09-02Remove Compat.MonoidJesse Rosenthal1-1/+1
2016-05-21HTML reader: fixed bug in pClose.John MacFarlane1-1/+1
2016-04-10Markdown + HTML readers: be more forgiving about unescaped &.John MacFarlane1-10/+15
2016-03-22Fixed bug in Markdown raw HTML parsing.John MacFarlane1-1/+1
2016-03-10Fixed behavior of base tag.John MacFarlane1-17/+11
2016-02-20Fixed some linter warnings.John MacFarlane1-3/+3
2016-02-20HTML reader: rewrote htmlInBalanced.John MacFarlane1-10/+39
2016-02-16HTML reader: properly handle an empty cell in a simple table.John MacFarlane1-0/+1
2016-01-29HTML reader: handle multiple meta tags with same name.John MacFarlane1-2/+6
2016-01-22Changed type of Shared.uniqueIdent argument from [String] to Set String.John MacFarlane1-3/+3
2015-12-12Modified readers to emit SoftBreak when appropriate.John MacFarlane1-1/+4
2015-11-19Merge branch 'new-image-attributes' of https://github.com/mb21/pandoc into mb...John MacFarlane1-15/+11
2015-11-09Restored Text.Pandoc.Compat.Monoid.John MacFarlane1-1/+1
2015-11-09Revert "Use -XNoImplicitPrelude and 'import Prelude' explicitly."John MacFarlane1-1/+0
2015-11-08Use -XNoImplicitPrelude and 'import Prelude' explicitly.John MacFarlane1-0/+1
2015-10-22Fixed over-eager raw HTML inline parsing.John MacFarlane1-0/+1
2015-10-14Use custom Prelude to avoid compiler warnings.John MacFarlane1-2/+2
2015-10-11HTML reader/writer: better handling of "section" elements.John MacFarlane1-3/+10
2015-08-08HTML reader: add auto identifiers if not present on headers.John MacFarlane1-7/+17
2015-08-07Updated readers, writers and README for link attributemb211-14/+4
2015-08-07Updated readers and writers for new image attribute parameter.John MacFarlane1-1/+7
2015-07-27HTML Reader: Detect font-variant with pickStyleAttrPropsOphir Lifshitz1-6/+5
2015-07-24HTML Reader: Parse <ol> type, class, and inline list-style(-type) CSSOphir Lifshitz1-17/+30
2015-07-21Fix regression: allow HTML comments containing `--`.John MacFarlane1-4/+4
2015-07-21HTML reader: handle type attribute on ol.John MacFarlane1-1/+8
2015-07-10Avoid parsing partial URLs as HTML tags.John MacFarlane1-1/+8
2015-06-04HTML reader: allow `<body>` to close `<head>`.John MacFarlane1-0/+1
2015-05-13HTML reader: Support base tag.John MacFarlane1-7/+28
2015-05-11HTML reader: Fixed detection of self-closing tags.John MacFarlane1-2/+2
2015-04-29HTML reader: Allow multiple colgroups in table.John MacFarlane1-1/+1
2015-04-26Updated copyright notices to -2015. Closes #2111.John MacFarlane1-2/+2
2015-04-17More principled fix for #1820.John MacFarlane1-5/+7
2015-04-17Fixed `htmlTag` in HTML reader.John MacFarlane1-1/+1
2015-02-18Move utility error functions to Text.Pandoc.SharedMatthew Pickering1-1/+1
2015-02-18Change return type of HTML readerMatthew Pickering1-5/+12
2015-01-25fixes #1859 HTML Reader table parsingmb211-11/+22
2014-11-16Make `embed` tag either block or inline.John MacFarlane1-2/+2
2014-09-25HTML Reader: Recognise <br> tags inside <pre> blocksmpickering1-1/+6
2014-08-18HTML reader: improved handling of tags that can be block or inline.John MacFarlane1-5/+13
2014-08-16HTML reader: Parse appropriately styled span as SmallCaps.John MacFarlane1-1/+6
2014-08-12EPUB Reader: Ignore title pagesMatthew Pickering1-4/+10
2014-08-08Added `native_divs` and `native_spans` extensions.John MacFarlane1-1/+4
2014-08-08HTML EPUB exts: switch element can now be in either the inline or block positionMatthew Pickering1-9/+10
2014-08-07HTML reader: Really ignore DOCTYPE and xml declarations.John MacFarlane1-2/+2
2014-08-04HTML reader: ignore <?xml..> and <DOCTYPE..> tags.John MacFarlane1-1/+1
2014-08-04Use texmath 0.7 interface.John MacFarlane1-2/+2
2014-07-31HTML Reader: Added ability to read MathML formatted <math> blocksMatthew Pickering1-0/+16
2014-07-31HTML Reader: Added support for anchors on links and list itemsMatthew Pickering1-4/+22
2014-07-31HTML Reader: Extended HTML Reader to recognise EPUB specific elementsMatthew Pickering1-28/+178
2014-07-26Generalised more in Parsing.hs to enable the use of custom stateMatthew Pickering1-18/+61