aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Roff.hs
AgeCommit message (Expand)AuthorFilesLines
2021-05-09Change reader types, allowing better tracking of source positions.John MacFarlane1-18/+16
2020-03-22Finer grained imports of Text.Pandoc.Class submodules (#6203)Albert Krewinkel1-1/+1
2020-03-15Use implicit Prelude (#6187)Albert Krewinkel1-1/+0
2020-03-13Update copyright year (#6186)Albert Krewinkel1-1/+1
2020-03-05Fix parsing of `\'` in man/ms readers.John MacFarlane1-1/+1
2020-03-05Fix parsing of `\.` in man/ms readers.John MacFarlane1-1/+1
2019-11-12Switch to new pandoc-types and use Text instead of String [API change].despresc1-93/+92
2019-09-28Use Prelude.fail to avoid ambiguity with fail from GHC.Base.John MacFarlane1-3/+3
2019-09-05Roff reader: Better support for 'while'.John MacFarlane1-0/+3
2019-09-05Roff reader: improve handling of groups.John MacFarlane1-4/+2
2019-09-04Roff reader: Fix problem parsing comments before macro.John MacFarlane1-2/+0
2019-09-04Roff reader: more improvements in parsing conditionals.John MacFarlane1-3/+4
2019-09-04Roff readers: better parsing of groups.John MacFarlane1-9/+5
2019-03-01Remove license boilerplate.John MacFarlane1-20/+0
2019-02-04Add missing copyright notices and remove license boilerplate (#5112)Albert Krewinkel1-2/+2
2018-11-02Man reader: table improvements.John MacFarlane1-6/+7
2018-11-02Roff reader: Don't require global table options.John MacFarlane1-2/+2
2018-11-02Roff reader: tbl improvements.John MacFarlane1-1/+2
2018-11-02Roff reader: Handle 'H' modifier after '.TS'.John MacFarlane1-3/+2
2018-11-02Roff reader: conditionals: allow .\} to end group.John MacFarlane1-3/+4
2018-11-02Roff reader: reinstate column check for macros.John MacFarlane1-10/+16
2018-11-02Roff reader: another fix for conditionals.John MacFarlane1-1/+1
2018-11-02Roff reader: fixed small issue with conditionals.John MacFarlane1-3/+1
2018-11-02Roff reader: Improved handling of custom strings as arguments.John MacFarlane1-6/+6
2018-11-02Roff reader: expand strings in font commands.John MacFarlane1-12/+26
2018-11-02Revert "Revert "Revert "Roff reader: custom Stream type."""John MacFarlane1-51/+27
2018-11-02Fix readWithM with Stream.John MacFarlane1-1/+1
2018-11-02Revert "Revert "Roff reader: custom Stream type.""John MacFarlane1-27/+51
2018-11-02Revert "Roff reader: custom Stream type."John MacFarlane1-51/+27
2018-11-02Roff reader: custom Stream type.John MacFarlane1-27/+51
2018-11-02Roff reader: improve lexing of conditionals.John MacFarlane1-28/+49
2018-11-01Change 'groff' -> 'roff'.John MacFarlane1-2/+2
2018-10-30Roff reader: rename RoffToken constructors so they're shorter.John MacFarlane1-14/+14
2018-10-30Roff reader: renamed constructors for RoffToken...John MacFarlane1-14/+14
2018-10-30Roff reader: removed MacroKind alias.John MacFarlane1-5/+2
2018-10-30Roff reader: properly handle unknown backslash escapes.John MacFarlane1-1/+4
2018-10-29Roff reader: improved escape parsing.John MacFarlane1-59/+68
2018-10-28Roff tokenizer: allow `\*~` etc.John MacFarlane1-1/+1
2018-10-28Roff tokenizer: handle e.g. `\*n`.John MacFarlane1-1/+1
2018-10-28Roff tokenizer: better handling of escapes.John MacFarlane1-10/+39
2018-10-28Roff reader: introduce normal/copy mode distinction.John MacFarlane1-4/+33
2018-10-28Roff reader: use escapeArg in macroArg.John MacFarlane1-3/+8
2018-10-28Roff tokenizer: refactor escString.John MacFarlane1-15/+6
2018-10-28Roff tokenizer: revamped font parsing using escapeArg.John MacFarlane1-62/+59
2018-10-28Roff tokenizer: abstract out patterns: escapeArg, quoteArg.John MacFarlane1-27/+27
2018-10-28Roff tokenizer: allow space before ( in table options.John MacFarlane1-1/+2
2018-10-28Hlint changes.John MacFarlane1-4/+4
2018-10-28Roff tokenizer: better handling of table format strings.John MacFarlane1-8/+10
2018-10-27Revert "Roff tokenizer: use Seq for lineparts rather than lists."John MacFarlane1-44/+42
2018-10-27Revert "Roff reader: use LineParts abstraction."John MacFarlane1-65/+57