aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Textile.hs
AgeCommit message (Expand)AuthorFilesLines
2021-05-09Change reader types, allowing better tracking of source positions.John MacFarlane1-84/+88
2021-03-19Protect partial uses of maximum with NonEmpty.John MacFarlane1-2/+2
2021-03-19Use NonEmpty instead of minimumDef.John MacFarlane1-2/+2
2021-03-18Use minimumDef instead of minimum (partial function).John MacFarlane1-1/+3
2021-03-15Use foldl' instead of foldl everywhere.John MacFarlane1-2/+2
2021-02-26Fix/update URLs and use HTTP**S** where possible (#7122)Salim B1-1/+1
2021-01-08Update copyright notices for 2021 (#7012)Albert Krewinkel1-1/+1
2020-09-13Fix hlint suggestions, update hlint.yaml (#6680)Christian Despres1-3/+3
2020-06-13Textile reader: support "pre." for code blocks.John MacFarlane1-8/+8
2020-04-28Support new Underline element in readers and writers (#6277)Vaibhav Sagar1-2/+2
2020-04-15Use the new builders, modify readers to preserve empty headersdespresc1-3/+6
2020-04-15Adapt to the newest Table type, fix some previous adaptation issuesdespresc1-1/+1
2020-04-15Implement the new Table typedespresc1-1/+1
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-07Resolve HLint warningsAlbert Krewinkel1-2/+1
2019-11-12Switch to new pandoc-types and use Text instead of String [API change].despresc1-137/+136
2019-09-28Use Prelude.fail to avoid ambiguity with fail from GHC.Base.John MacFarlane1-1/+1
2019-03-01Remove license boilerplate.John MacFarlane1-19/+0
2019-02-04Add missing copyright notices and remove license boilerplate (#5112)Albert Krewinkel1-2/+2
2018-07-02Spellcheck commentsAlexander Krotov1-1/+1
2018-03-30Textile reader: fixed tables with no body rows.John MacFarlane1-1/+1
2018-03-18Use NoImplicitPrelude and explicitly import Prelude.John MacFarlane1-0/+2
2018-03-16Monoid/Semiground cleanup relying on custom Prelude.John MacFarlane1-1/+0
2018-01-19hlint code improvements.John MacFarlane1-6/+7
2018-01-05Update copyright notices to include 2018Albert Krewinkel1-2/+2
2017-11-02hlintAlexander Krotov1-5/+4
2017-10-27hlint suggestions.John MacFarlane1-1/+1
2017-10-27Automatic reformating by stylish-haskell.John MacFarlane1-4/+4
2017-10-27Consistent underline for Readers (#2270)hftf1-2/+2
2017-09-12Textile reader: allow 'pre' code in list item.John MacFarlane1-8/+4
2017-07-07Rewrote LaTeX reader with proper tokenization.John MacFarlane1-1/+1
2017-06-20Move CR filtering from tabFilter to the readers.John MacFarlane1-2/+2
2017-06-19Separated tracing from logging.John MacFarlane1-4/+2
2017-06-10Changed all readers to take Text instead of String.John MacFarlane1-2/+5
2017-05-28Parsing: `many1Till`: Check for the end condition before parsingHerwig Stuetz1-1/+1
2017-05-24Parsing: Provide parseFromString'.John MacFarlane1-4/+4
2017-05-15Textile reader: fix bug for certain links in table cells.John MacFarlane1-2/+5
2017-05-13Update dates in copyright noticesAlbert Krewinkel1-3/+4
2017-03-04Stylish-haskell automatic formatting changes.John MacFarlane1-16/+16
2017-02-11Use new warnings throughout the code base.John MacFarlane1-4/+2
2017-02-10Added Text.Pandoc.Logging (exported module).John MacFarlane1-0/+1
2017-02-06Removed --parse-raw and readerParseRaw.John MacFarlane1-6/+0
2017-01-25More logging-related changes.John MacFarlane1-7/+4
2017-01-25Changes to verbosity in writer and reader options.John MacFarlane1-1/+1
2017-01-25Removed readerOldDashes and --old-dashes option, added old_dashes extension.John MacFarlane1-3/+1
2017-01-25Readers: pass errors straight up to PandocMonad.Jesse Rosenthal1-2/+1
2017-01-25Unify Errors.Jesse Rosenthal1-1/+2
2017-01-25Working on readers.Jesse Rosenthal1-84/+92