aboutsummaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)AuthorFilesLines
2019-11-12Switch to new pandoc-types and use Text instead of String [API change].despresc1-5/+5
PR #5884. + Use pandoc-types 1.20 and texmath 0.12. + Text is now used instead of String, with a few exceptions. + In the MediaBag module, some of the types using Strings were switched to use FilePath instead (not Text). + In the Parsing module, new parsers `manyChar`, `many1Char`, `manyTillChar`, `many1TillChar`, `many1Till`, `manyUntil`, `mantyUntilChar` have been added: these are like their unsuffixed counterparts but pack some or all of their output. + `glob` in Text.Pandoc.Class still takes String since it seems to be intended as an interface to Glob, which uses strings. It seems to be used only once in the package, in the EPUB writer, so that is not hard to change.
2019-11-07Change merge behavior for metadata.John MacFarlane1-1/+3
Previously, if a document contained two YAML metadata blocks that set the same field, the conflict would be resolved in favor of the first. Now it is resolved in favor of the second (due to a change in pandoc-types). This makes the behavior more uniform with other things in pandoc (such as reference links and `--metadata-file`).
2019-11-04Use latest pandoc-citeproc 0.16.3.1 in binary packages.John MacFarlane1-1/+1
2019-10-30Use latest doclayout.John MacFarlane1-1/+1
Closes #5863.
2019-10-29Changes to build with new doctemplates/doclayout.John MacFarlane1-4/+2
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-16Use latest dev doctemplatesJohn MacFarlane1-1/+1
2019-10-15Use latest dev doctemplates.John MacFarlane1-1/+1
2019-10-14Minor template & test changes for latest dev doctemplates.John MacFarlane1-1/+1
2019-10-11stack.yaml - re-add HsYAML-aeson, as pandoc-citeproc uses itJohn MacFarlane1-0/+1
2019-10-10Improve parsing of --defaults.John MacFarlane1-2/+1
- Add FromYAML instances to Opt and to all subsidiary types. - Remove the use of HsYAML-aeson, which doesn't give good position information on errors. - Rename some fields in Opt to better match cli options or reflect what the ycontain [API change]: + optMetadataFile -> optMetadataFiles + optPDFEngineArgs -> optPDFEngineOpts + optWrapText -> optWrap - Add IpynbOutput enumerated type to Text.Pandoc.App.Opts. Use this instead fo a string for optIpynbOutput. - Add FromYAML instance for Filter in Text.Pandoc.Filters. With these changes parsing of defaults files should be complete and should give decent error messages. Now (unlike before) we get an error if an unknown field is used.
2019-10-09Change optVariables from [(String, String)] to Context Text.John MacFarlane1-1/+1
In Text.Pandoc.App.Opt [API change].
2019-10-09Options.WriterOptions: Change type of writerVariables to Context Text.John MacFarlane1-1/+3
This will allow structured values. [API change]
2019-10-07Remove derive_json_via_th flag; always use TH.John MacFarlane1-1/+0
This cuts down on code duplication and reduces the chance for errors. See #4083.
2019-10-07Make derive_json_via_th flag false by defaultJohn MacFarlane1-1/+1
2019-10-06stack.yaml - added some missing flagsJohn MacFarlane1-0/+2
2019-10-04Require haddock-library >= 1.8John MacFarlane1-0/+1
2019-10-03Use texmath 0.11.3John MacFarlane1-1/+1
2019-10-03Use latest skylighting.John MacFarlane1-2/+2
2019-09-30Use latest skylighting-core.John MacFarlane1-1/+2
Closes #5776.
2019-09-30Use skylighting >= 0.8.2.2.John MacFarlane1-1/+1
2019-09-25Used released pandoc-citeproc 0.16.3.John MacFarlane1-3/+1
2019-09-25Use latest skylighting.John MacFarlane1-0/+2
This addresses #5776 for now, though ultimately we need a new release of regex-pcre-builtin or some other solution.
2019-09-24Use latest texmath.John MacFarlane1-0/+1
2019-09-24Use pandoc-types 1.17.6.1John MacFarlane1-0/+1
2019-09-22Update pandoc-citeproc commit.John MacFarlane1-1/+1
2019-09-22Add HsYAML-aeson to stack.yaml.John MacFarlane1-0/+1
2019-09-22Use latest pandoc-citeproc.John MacFarlane1-1/+1
2019-09-22Switch to lts-14 resolver and ghc 8.6.John MacFarlane1-9/+1
2019-09-22Use released doctemplatesJohn MacFarlane1-3/+1
2019-09-22Use HsYAML-0.2.0.0John MacFarlane1-1/+2
Most of this is due to @vijayphoenix (#5704), but it needed some revisions to integrate with current master, and to use the released HsYAML. Closes #5704.
2019-09-05Add partial styles.html in HTML5 template.John MacFarlane1-1/+3
Avoid duplication in HTML templates by using styles.html partial. Change indentation of styles in template.
2019-09-02Use latest pandoc-citeproc.John MacFarlane1-1/+1
2019-09-02Use doctemplates 0.6.John MacFarlane1-3/+1
2019-08-26Simplify stack.yaml after cabal file changes.John MacFarlane1-1/+1
We don't need so many local ghc options now that they're specified in pandoc.cabal. I've kept `-fhide-source-paths` (in case we move this out of pandoc.cabal) and `-Wno-missing-home-modules` (which seems to be needed for `stack ghci` to work).
2019-08-25Use dev version of doctemplates.John MacFarlane1-1/+3
2019-08-25Use new doctemplates, doclayout.John MacFarlane1-1/+2
+ Remove Text.Pandoc.Pretty; use doclayout instead. [API change] + Text.Pandoc.Writers.Shared: remove metaToJSON, metaToJSON' [API change]. + Text.Pandoc.Writers.Shared: modify `addVariablesToContext`, `defField`, `setField`, `getField`, `resetField` to work with Context rather than JSON values. [API change] + Text.Pandoc.Writers.Shared: export new function `endsWithPlain` [API change]. + Use new templates and doclayout in writers. + Use Doc-based templates in all writers. + Adjust three tests for minor template rendering differences. + Added indentation to body in docbook4, docbook5 templates. The main impact of this change is better reflowing of content interpolated into templates. Previously, interpolated variables were rendered independently and intepolated as strings, which could lead to overly long lines. Now the templates interpolated as Doc values which may include breaking spaces, and reflowing occurs after template interpolation rather than before.
2019-08-23Use released pandoc-types.John MacFarlane1-2/+1
2019-08-16Lua: add module for AST element sequence traversalAlbert Krewinkel1-0/+2
Lua filters must be able to traverse sequences of AST elements and to replace elements by splicing sequences back in their place. Special `Walkable` instances can be used for this; those are provided in a new module `Text.Pandoc.Lua.Walk`.
2019-08-07Fix stack.yaml.John MacFarlane1-4/+2
2019-08-05Use dev version of pandoc-citeproc.John MacFarlane1-1/+5
2019-07-29Use latest doctemplates.John MacFarlane1-1/+1
2019-07-28Use doctemplates 0.3, change type of writerTemplate.John MacFarlane1-0/+1
* Require recent doctemplates. It is more flexible and supports partials. * Changed type of writerTemplate to Maybe Template instead of Maybe String. * Remove code from the LaTeX, Docbook, and JATS writers that looked in the template for strings to determine whether it is a book or an article, or whether csquotes is used. This was always kludgy and unreliable. To use csquotes for LaTeX, set `csquotes` in your variables or metadata. It is no longer sufficient to put `\usepackage{csquotes}` in your template or header includes. To specify a book style, use the `documentclass` variable or `--top-level-division`. * Change template code to use new API for doctemplates.
2019-07-14stack.yaml - use latest skylighting.John MacFarlane1-2/+2
2019-06-13Use latest skylighting.John MacFarlane1-2/+2
2019-06-04Update pandoc-citeproc and skylighting versions.John MacFarlane1-2/+2
2019-05-27Specify skylighting 0.8 as extra-deps.John MacFarlane1-0/+2
2019-05-23Disable missing-home-modules warning in stack.yaml.John MacFarlane1-1/+1
Otherwise 'stack ghci' fails.
2019-05-20Improve output of Lua tests (#5499)Albert Krewinkel1-0/+2
This makes use of tasty-lua, a package to write tests in Lua and integrate the results into Tasty output. Test output becomes more informative: individual tests and test groups become visible in test output. Failures are reported with helpful error messages.
2019-05-04Lua: add `pandoc.system` module (#5468)Albert Krewinkel1-0/+1
The `system` Lua module provides utility functions to interact with the operating- and file system. E.g. print(pandoc.system.get_current_directory()) or pandoc.system.with_temporary_directory('tikz', function (dir) -- write and compile a TikZ file with pdflatex end)
2019-04-18Update stack.yaml, use latest pandoc-citeproc and lts-13.John MacFarlane1-5/+2