aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Parsing.hs
AgeCommit message (Expand)AuthorFilesLines
2017-10-23Implemented fenced Divs.John MacFarlane1-0/+2
2017-08-28RST reader: handle blank lines correctly in line blocks (#3881)Alexander1-1/+1
2017-08-19Markdown reader: use CommonMark rules for list item nesting.John MacFarlane1-8/+28
2017-08-08Parsing: added gobbleSpaces.John MacFarlane1-0/+12
2017-07-14Fix ghc 8.2.1 compiler warnings.John MacFarlane1-23/+26
2017-07-14Revert "Fixed some ghc 8.2 compiler warnings."John MacFarlane1-14/+14
2017-07-14Fixed some ghc 8.2 compiler warnings.John MacFarlane1-14/+14
2017-07-07Parsing: added takeP, takeWhileP for efficient parsing of [Char].John MacFarlane1-2/+33
2017-07-07Rewrote LaTeX reader with proper tokenization.John MacFarlane1-45/+22
2017-06-19Tracing: give less misleading line information with parseWithString.John MacFarlane1-1/+2
2017-05-28Parsing: `many1Till`: Check for the end condition before parsingHerwig Stuetz1-2/+3
2017-05-25Markdown reader: warn for notes defined but not used.John MacFarlane1-2/+5
2017-05-24Parsing: Provide parseFromString'.John MacFarlane1-1/+17
2017-05-23Shared: Provide custom isURI that rejects unknown schemes [isURI]Albert Krewinkel1-26/+1
2017-05-22Move indentWith to Text.Pandoc.Parsing (#3687)Alexander Krotov1-0/+12
2017-05-17Merge pull request #3677 from labdsf/anylinenewlineJohn MacFarlane1-0/+5
2017-05-17Move anyLineNewline to Parsing.hsAlexander Krotov1-0/+5
2017-05-14Parsing: add `insertIncludedFilesF` which returns F blocksAlbert Krewinkel1-7/+24
2017-05-14Parsing: introduce `HasIncludeFiles` type classAlbert Krewinkel1-9/+22
2017-05-14Parsing: replace partial with total functionAlbert Krewinkel1-1/+1
2017-05-13Update dates in copyright noticesAlbert Krewinkel1-2/+2
2017-05-11Combine grid table parsersAlbert Krewinkel1-18/+51
2017-05-02Generalize tableWith, gridTableWithAlbert Krewinkel1-23/+26
2017-04-30Provide shared F monad functions for Markdown and Org readersAlbert Krewinkel1-10/+25
2017-04-15Avoid parsing "Notes:**" as a bare URI.John MacFarlane1-0/+2
2017-03-13Better handling of \part in LaTeX.John MacFarlane1-2/+0
2017-03-12Issue warning for duplicate header identifiers.John MacFarlane1-2/+8
2017-03-12Improved behavior of `auto_identifiers` when there are explicit ids.John MacFarlane1-1/+2
2017-03-10Use pMacroDefinition in macro (for more direct parsing).John MacFarlane1-13/+8
2017-03-03RST reader: support RST-style citations.John MacFarlane1-0/+2
2017-02-20Revert "Refined constraint for HasQuoteContext instance."John MacFarlane1-1/+1
2017-02-20Refined constraint for HasQuoteContext instance.John MacFarlane1-1/+1
2017-02-20Removed redundant constraint.John MacFarlane1-2/+1
2017-02-17Parsing: Added HasLogMessages, logMessage, reportLogMessages.John MacFarlane1-0/+25
2017-02-11Use new warnings throughout the code base.John MacFarlane1-2/+8
2017-02-07Refactored some files formerly in LaTeX reader.John MacFarlane1-0/+23
2017-02-07Moved readFileFromDirs to Text.Pandoc.Class.John MacFarlane1-3/+3
2017-01-27Shared: rename compactify', compactify'DL -> compactify, compactifyDL.John MacFarlane1-1/+1
2017-01-27Removed Shared.compactify.John MacFarlane1-12/+12
2017-01-25Removed readerOldDashes and --old-dashes option, added old_dashes extension.John MacFarlane1-1/+1
2017-01-25Removed readerSmart and the --smart option; added Ext_smart extension.John MacFarlane1-5/+1
2017-01-25Make Extensions a custom type instead of a Set Extension.John MacFarlane1-4/+4
2017-01-25LaTeX reader: Proper include file processing.John MacFarlane1-0/+2
2017-01-25Parsing: Removed obsolete warnings stuff.John MacFarlane1-21/+3
2017-01-25Remove OverlappingInstances pragma.Jesse Rosenthal1-1/+0
2017-01-25Try adding OverlappingInstances pragma to parsing.Jesse Rosenthal1-0/+1
2017-01-25Unify Errors.Jesse Rosenthal1-1/+1
2017-01-25Add IncoherentInstances pragma for HasQuotedContext.Jesse Rosenthal1-1/+3
2016-10-23Tighten up parsing of raw email addresses.John MacFarlane1-4/+13
2016-10-13Allow empty lines when parsing line blocksAlbert Krewinkel1-2/+5