aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/HTML.hs
AgeCommit message (Expand)Author
2013-08-20HTML reader: Improved handling of code with --parse-raw.issue221John MacFarlane
2013-08-10Adjustments for new Format newtype.John MacFarlane
2013-07-16HTML reader: read widths from col tags if present.John MacFarlane
2013-07-16HTML reader: Handle non-simple tables (#893).John MacFarlane
2013-07-16HTML reader: Generalized table parser.John MacFarlane
2013-06-24Use new flexible metadata type.John MacFarlane
2013-03-28Parsing: Better error reporting in readWith.John MacFarlane
2013-02-16HTML reader: Preserve all header attributes.John MacFarlane
2013-01-30HTML reader: Handle colgroup tag.John MacFarlane
2013-01-12HTML reader: Added html5 tags to list of block-level tags.John MacFarlane
2013-01-09Added Attr field to Header.John MacFarlane
2012-09-15HTML reader: Modified htmlTag for fewer false positives.John MacFarlane
2012-09-13MediaWiki reader: Use MWState instead of ParserState.John MacFarlane
2012-09-09HTML reader: Handle nested `<q>` tags properly.John MacFarlane
2012-09-09HTML reader: Parse <q> as Quoted DoubleQuote.John MacFarlane
2012-08-15Moved renderTags' from HTML reader & SelfContained to Shared.John MacFarlane
2012-07-26Fixed whitespace errors.John MacFarlane
2012-07-26Use readerExtensions instead of readerStrict in readers.John MacFarlane
2012-07-25Changed reader parameters from ParserState to ReaderOptions.John MacFarlane
2012-07-25Moved ParseRaw from ParserState to ReaderOptions.John MacFarlane
2012-07-25Options -> ReaderOptions.John MacFarlane
2012-07-25Put smart, strict in separate options field in state.John MacFarlane
2012-07-24HTML reader: Fixed bug in htmlBalanced.John MacFarlane
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane
2012-07-20Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.John MacFarlane
2012-07-20Use Text.Parsec instead of Text.ParserCombinators.Parsec.John MacFarlane
2012-04-29HTML reader: Support `<col>` and `<caption>` in tables.John MacFarlane
2012-04-28HTML reader: Don't skip nonbreaking spaces.John MacFarlane
2012-02-17Don't escape `<` in `<style>` tags with `--self-contained`.John MacFarlane
2012-01-12Added "title" to list of docbook block-level tags.John MacFarlane
2011-12-29Better smart quote parsing.John MacFarlane
2011-10-25HTML reader now recognizes DocBook block and inline tags.John MacFarlane
2011-08-01HTML reader: Fixed bug parsing tables w both thead and tbody.John MacFarlane
2011-07-23Properly handle characters in the 128..159 range.John MacFarlane
2011-07-16HTML reader: treat Plain as Para when needed.John MacFarlane
2011-07-15HTML reader: Handle tbody, thead in simple tables.John MacFarlane
2011-07-10Make HTML reader more forgiving of bad HTML.John MacFarlane
2011-01-26Add support for attributes in inline Code.John MacFarlane
2011-01-26Bumped version to 1.8; depend on pandoc-types 1.8.John MacFarlane
2011-01-14HTML reader: parse simple tables.John MacFarlane
2011-01-14HTML reader: parse location tags in pSatisfy.John MacFarlane
2011-01-06HTML reader: Fixed bug in htmlTag for comments.John MacFarlane
2010-12-30HTML reader: Fixed some parsing bugs.John MacFarlane
2010-12-30New HTML reader using tagsoup as a lexer.John MacFarlane
2010-12-22HTML reader: Simplified parsing of <script> sections.John MacFarlane
2010-12-22Made --smart work with HTML reader.John MacFarlane
2010-12-15HTML reader: allow : in tags.John MacFarlane
2010-12-10Removed HTML sanitization.John MacFarlane
2010-12-07Make --smart work in HTML reader.John MacFarlane
2010-12-03Basic Textile Readerpaul.rivier