Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-07 | Apply linter suggestions. Add fix_spacing to lint target in Makefile. | John MacFarlane | 1 | -1/+0 | |
2020-02-07 | Resolve HLint warnings | Albert Krewinkel | 1 | -1/+0 | |
All warnings are either fixed or, if more appropriate, HLint is configured to ignore them. HLint suggestions remain. * Ignore "Use camelCase" warnings in Lua and legacy code * Fix or ignore remaining HLint warnings * Remove redundant brackets * Remove redundant `return`s * Remove redundant as-pattern * Fuse mapM_/map * Use `.` to shorten code * Remove redundant `fmap` * Remove unused LANGUAGE pragmas * Hoist `not` in Text.Pandoc.App * Use fewer imports for `Text.DocTemplates` * Remove redundant `do`s * Remove redundant `$`s * Jira reader: remove unnecessary parentheses | |||||
2019-10-29 | Changes to build with new doctemplates/doclayout. | John MacFarlane | 1 | -4/+6 | |
The new version of doctemplates adds many features to pandoc's templating system, while remaining backwards-compatible. New features include partials and filters. Using template filters, one can lay out data in enumerated lists and tables. Templates are now layout-sensitive: so, for example, if a text with soft line breaks is interpolated near the end of a line, the text will break and wrap naturally. This makes the templating system much more suitable for programatically generating markdown or other plain-text files from metadata. | |||||
2019-10-09 | Options.WriterOptions: Change type of writerVariables to Context Text. | John MacFarlane | 1 | -0/+31 | |
This will allow structured values. [API change] |