aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Parsing.hs
AgeCommit message (Expand)AuthorFilesLines
2013-01-14Parsing: Fixed uri -- escape unicode URLs.John MacFarlane1-2/+2
2013-01-14Parsing: Simplified and improved singleQuoteStart.John MacFarlane1-8/+2
2013-01-13Moved lineBlockLines to Parsing.John MacFarlane1-0/+18
2013-01-09More improvements in emailAddress parser.John MacFarlane1-23/+17
2013-01-09Made email parser more correct.John MacFarlane1-12/+14
2013-01-09Added Attr field to Header.John MacFarlane1-0/+2
2013-01-04Markdown reader: Warn about duplicate link references.John MacFarlane1-0/+1
2013-01-03Added stateWarnings.John MacFarlane1-2/+4
2013-01-03Implemented `Ext_header_identifiers`, `Ext_implicit_header_references`.John MacFarlane1-0/+2
2012-12-13Fixed bug in withRaw.John MacFarlane1-1/+1
2012-10-05Revert "Added stateWarnings to ParserState, added warning function."John MacFarlane1-8/+0
2012-10-05Added stateWarnings to ParserState, added warning function.John MacFarlane1-0/+8
2012-09-29Renamed removedLeadingTrailingSpace to trim.John MacFarlane1-3/+2
2012-09-27Parsing: Changed type of stateSubstitutions to use Inlines.John MacFarlane1-2/+2
2012-09-27Removed nullBlock.John MacFarlane1-6/+0
2012-09-27Added stateSubstitutions to ParserState, use for RST substitutions.John MacFarlane1-0/+5
2012-09-23Revert "More intelligent handling of text encodings."John MacFarlane1-1/+2
2012-09-23More intelligent handling of text encodings.John MacFarlane1-2/+1
2012-09-23Revert "Use local encoding for input/output rather than forcing UTF8."John MacFarlane1-1/+2
2012-09-23Use local encoding for input/output rather than forcing UTF8.John MacFarlane1-2/+1
2012-09-12Export 'nested' in Parsing.John MacFarlane1-0/+13
2012-09-12Text.Pandoc.Parsing: Handle trailing slash in 'uri'.John MacFarlane1-2/+3
2012-09-09Parsing: Generalized type of withQuoteContext.John MacFarlane1-2/+2
2012-08-08Changes to literate haskell options.John MacFarlane1-5/+0
2012-08-02Made F a newtype, moved definitions to Parser.John MacFarlane1-1/+23
2012-08-01Parsing: removed duplication of Key and Key'.John MacFarlane1-38/+5
2012-08-01Major rewrite of markdown reader.John MacFarlane1-14/+43
2012-07-27Removed commented-out pandoc2 code.John MacFarlane1-41/+0
2012-07-27Parser: Changed types to use type alias Parser, not Parsec.John MacFarlane1-97/+138
2012-07-26Fixed whitespace errors.John MacFarlane1-25/+25
2012-07-26Parsing: Removed failIfStrict.John MacFarlane1-5/+0
2012-07-26Parsing: Added guardEnabled, guardDisabled.John MacFarlane1-3/+14
2012-07-25Moved stateApplyMacros, stateIndentedCodeClasses to ReaderOptions.John MacFarlane1-6/+2
2012-07-25stateCitations -> readerCitations.John MacFarlane1-2/+0
2012-07-25Moved stateLiterateHaskell to readerLiterateHaskell in Options.John MacFarlane1-3/+1
2012-07-25Got rid of stateStandalone, which was hardly used anyway.John MacFarlane1-2/+0
2012-07-25Moved stateOldDashes to readerOldDashes in ReaderOptions.John MacFarlane1-5/+1
2012-07-25Moved stateTabStop to readerTabStop in ReaderOptions.John MacFarlane1-3/+0
2012-07-25Moved stateColumns to readerColumns in ReaderOptions.John MacFarlane1-3/+1
2012-07-25Moved ParseRaw from ParserState to ReaderOptions.John MacFarlane1-2/+0
2012-07-25Text.Pandoc.Parsing: Added getOption.John MacFarlane1-4/+6
2012-07-25Options -> ReaderOptions.John MacFarlane1-3/+3
2012-07-25Put smart, strict in separate options field in state.John MacFarlane1-8/+7
2012-07-24Better algorithm for oneOfStrings.John MacFarlane1-2/+9
2012-07-24Refactored table parsers, captions now not part of core tableWith.John MacFarlane1-10/+4
2012-07-22Revised code for pipe tables.John MacFarlane1-94/+4
2012-07-22Merge pull request #510 from mytskine/markdown-extraJohn MacFarlane1-1/+97
2012-07-20Use Parser as type synonym for Parsec.John MacFarlane1-1/+3
2012-07-20Text.Pandoc.Parsing: Export all Parsec functions used in pandoc code.John MacFarlane1-1/+52
2012-07-20Use Text.Parsec instead of Text.ParserCombinators.Parsec.John MacFarlane1-103/+103