aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/RST.hs
AgeCommit message (Expand)AuthorFilesLines
2018-07-21RST reader: fix double-link bug.John MacFarlane1-1/+8
2018-04-26RST reader: fix anonymous redirects with backticks.John MacFarlane1-3/+8
2018-04-22RST reader: allow < 3 spaces indent under directives.John MacFarlane1-3/+7
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-03-14RST reader: Allow unicode bullet characters.John MacFarlane1-1/+1
2018-01-20RST reader: fix parsing of headers with trailing space.John MacFarlane1-1/+1
2018-01-19hlint code improvements.John MacFarlane1-4/+4
2018-01-14RST reader: add aligned environment when needed in math.John MacFarlane1-2/+7
2018-01-10RST reader: better handling for headers with an anchor.John MacFarlane1-2/+12
2018-01-05Update copyright notices to include 2018Albert Krewinkel1-2/+2
2017-12-24RST reader: allow empty list items (as docutils does).John MacFarlane1-2/+2
2017-12-14RST reader: more accurate parsing of references.John MacFarlane1-36/+24
2017-11-14RST reader: better support for 'container' directive.John MacFarlane1-1/+3
2017-10-29Source code reformatting.John MacFarlane1-6/+5
2017-10-29More hlint fixes.John MacFarlane1-50/+46
2017-10-27Automatic reformating by stylish-haskell.John MacFarlane1-21/+21
2017-09-30Removed writerSourceURL, add source URL to common state.John MacFarlane1-1/+1
2017-08-27RST reader: Fixed `..include::` directive.John MacFarlane1-9/+9
2017-08-17RST reader/writer: support unknown interpreted text roles...John MacFarlane1-4/+2
2017-08-10RST reader: implement csv-table directive.John MacFarlane1-45/+56
2017-08-10RST reader: Basic support for csv-table directive.John MacFarlane1-0/+52
2017-08-09RST reader: reorganize block parsers for ~20% faster parsing.John MacFarlane1-3/+4
2017-08-09Removed spurious comments.John MacFarlane1-4/+0
2017-08-08RST reader: support :widths: attribute for table directive.John MacFarlane1-3/+13
2017-06-27RST reader: support anchors.John MacFarlane1-1/+23
2017-06-27RST reader: Handle chained link definitions.John MacFarlane1-7/+20
2017-06-20Move CR filtering from tabFilter to the readers.John MacFarlane1-1/+1
2017-06-10Changed all readers to take Text instead of String.John MacFarlane1-2/+5
2017-05-28RST reader: use anyLineNewline in rawListItem (#3702)Alexander Krotov1-2/+2
2017-05-24Parsing: Provide parseFromString'.John MacFarlane1-25/+25
2017-05-23RST reader: reformatting (code line length).John MacFarlane1-23/+47
2017-05-23RST Reader: parse list table directive (#3688)keiichiro shikano1-1/+28
2017-05-22Move indentWith to Text.Pandoc.Parsing (#3687)Alexander Krotov1-9/+0
2017-05-20RST reader: make use of anyLineNewline (#3686)Alexander Krotov1-2/+1
2017-05-13Update dates in copyright noticesAlbert Krewinkel1-2/+2
2017-05-02Generalize tableWith, gridTableWithAlbert Krewinkel1-3/+9
2017-03-19RST reader: recurse into bodies of unknown directives.John MacFarlane1-1/+2
2017-03-10Removed normalizeSpaces from Text.Pandoc.Shared.John MacFarlane1-0/+6
2017-03-04Stylish-haskell automatic formatting changes.John MacFarlane1-26/+26
2017-03-03RST reader: support RST-style citations.John MacFarlane1-14/+54
2017-03-02RST reader: Handle multiline cells in simple tables.John MacFarlane1-8/+16
2017-02-28RST reader: implemented implicit internal header links.John MacFarlane1-18/+42
2017-02-26RST reader: support scale and align attributes of images.John MacFarlane1-5/+25
2017-02-17Fixed repeated log messages in RST reader.John MacFarlane1-13/+14
2017-02-15Fix indirect hyperlink targets. Closes #512.John MacFarlane1-23/+33
2017-02-11RST reader: Support `.. line-block` directive.John MacFarlane1-2/+7
2017-02-11RST reader/writer: properly handle table captions.John MacFarlane1-1/+1
2017-02-11RST reader: Initial support of .. table directive.John MacFarlane1-4/+21
2017-02-11Fixed small bug in RST list parsing.John MacFarlane1-3/+2