aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Parsing.hs
AgeCommit message (Expand)AuthorFilesLines
2021-07-29parseFromString: preserve at least the source directory.John MacFarlane1-1/+1
2021-06-22Fix unneeded importJohn MacFarlane1-1/+1
2021-06-21Improve emailAddress in Text.Pandoc.Parsing.John MacFarlane1-4/+3
2021-05-13Implement curly-brace syntax for Markdown citation keys.John MacFarlane1-5/+13
2021-05-09T.P.Parsing: improve include file functions.John MacFarlane1-30/+31
2021-05-09Change reader types, allowing better tracking of source positions.John MacFarlane1-187/+287
2021-04-29Further improvements in smart quotes.John MacFarlane1-2/+2
2021-04-28Smarter smart quotes.John MacFarlane1-16/+29
2021-03-21Simplify T.P.Asciify and export toAsciiText [API change].John MacFarlane1-3/+3
2021-03-20Support `yaml_metadata_block` extension form commonmark, gfm.John MacFarlane1-1/+1
2021-03-20Text.Pandoc.Parsing: remove F type synonym.John MacFarlane1-5/+2
2021-03-19T.P.Shared: Remove ToString, ToText typeclasses [API change].John MacFarlane1-4/+4
2021-02-22Text.Pandoc.UTF8: change IO functions to return Text, not String.John MacFarlane1-1/+1
2021-01-08Update copyright notices for 2021 (#7012)Albert Krewinkel1-1/+1
2021-01-07T.P.Parsing: modify gridTableWith' for headerless tables.John MacFarlane1-11/+11
2020-12-07Parsing: Small code improvements.John MacFarlane1-3/+4
2020-12-07Parsing: More minor performance improvements.John MacFarlane1-10/+13
2020-12-07Small efficiency improvement in uri parserJohn MacFarlane1-1/+14
2020-12-07Parsing: in nonspaceChar use satisfy instead of oneOf.John MacFarlane1-1/+7
2020-11-17Markdown reader: fix regression with example list references.John MacFarlane1-1/+5
2020-10-08Export ParseError from T.P.Parsing.John MacFarlane1-1/+2
2020-10-07Raise informative errors when YAML metadata parsing fails.John MacFarlane1-0/+2
2020-09-21Markdown reader: Set citationNoteNum accurately in citations.John MacFarlane1-2/+2
2020-09-21Parsing: add stateInNote and stateLastNoteNumber to ParserState.John MacFarlane1-0/+4
2020-09-13Fix hlint suggestions, update hlint.yaml (#6680)Christian Despres1-9/+7
2020-06-23Markdown reader: Don't require blank line after grid table.John MacFarlane1-2/+2
2020-04-15Use the new builders, modify readers to preserve empty headersdespresc1-3/+8
2020-04-15Adapt to the newest Table type, fix some previous adaptation issuesdespresc1-2/+2
2020-04-15Implement the new Table typedespresc1-1/+5
2020-03-22Finer grained imports of Text.Pandoc.Class submodules (#6203)Albert Krewinkel1-1/+1
2020-03-15Use implicit Prelude (#6187)Albert Krewinkel1-2/+0
2020-03-13Update copyright year (#6186)Albert Krewinkel1-1/+1
2020-02-13Add highlight directive to the rST reader (#6140)Lucas Escot1-0/+2
2020-02-07Apply linter suggestions. Add fix_spacing to lint target in Makefile.John MacFarlane1-1/+1
2020-02-07Resolve HLint warningsAlbert Krewinkel1-4/+1
2019-11-14Parsing: Rename takeWhileP -> take1WhileP and clean it up.John MacFarlane1-9/+11
2019-11-12Switch to new pandoc-types and use Text instead of String [API change].despresc1-150/+226
2019-11-11Fix typos (#5896)Brian Wignall1-1/+1
2019-09-28Use Prelude.fail to avoid ambiguity with fail from GHC.Base.John MacFarlane1-6/+6
2019-08-27Add stateAllowLineBreaks to ParserState. [API change]John MacFarlane1-0/+2
2019-08-26parseFromString': reset stateLastStrPos to Nothing before parse.John MacFarlane1-0/+1
2019-08-26Fix inline parsing in grid table cells.John MacFarlane1-14/+16
2019-07-02Fix redundant constraint warnings. (#5625)Pete Ryland1-8/+6
2019-03-01Remove license boilerplate.John MacFarlane1-18/+0
2019-02-04Add missing copyright notices and remove license boilerplate (#5112)Albert Krewinkel1-2/+2
2018-12-31Remove unused HasHeaderMap (#5175)Alexander1-16/+1
2018-12-17Parsing: use safeRead instead of read.John MacFarlane1-1/+1
2018-11-11Text.Pandoc.Shared: add parameter to uniqueIdent, inlineListToIdentifier.John MacFarlane1-1/+1
2018-11-08Remove Functor and Applicative constraints where Monad already existsAlexander Krotov1-14/+7
2018-11-03Make readWithM accept Text input as well as String (API change)Alexander Krotov1-12/+6