aboutsummaryrefslogtreecommitdiff
path: root/cabal.project
AgeCommit message (Collapse)AuthorFilesLines
2020-06-24re-add pandoc-citeproc to cabal.project.John MacFarlane1-0/+4
2020-06-23Use released pandoc-citeproc.John MacFarlane1-5/+0
2020-06-22Use released pandoc-types 1.21.John MacFarlane1-4/+0
2020-04-27Use latest pandoc-types master with underline addition.John MacFarlane1-1/+1
2020-04-19Use dev version of pandoc-citeproc...John MacFarlane1-1/+1
so we can use pandoc-types 1.21 with it.
2020-04-19Use pandoc-types 1.21, new texmath.John MacFarlane1-1/+1
2020-04-17Fix typo.John MacFarlane1-1/+1
2020-04-17Use main pandoc-types repository...John MacFarlane1-2/+2
now that @despresc's changes have been merged.
2020-04-15Use custom pandoc-types repo with new table typesAlbert Krewinkel1-0/+4
2020-04-12Whitespace change to cabal.project...John MacFarlane1-0/+1
to invalidate cache.
2020-02-15Use pandoc-citeproc 0.17.John MacFarlane1-1/+1
2019-12-11Use pandoc-citeproc 0.16.4.1 (cabal).John MacFarlane1-1/+1
2019-11-27Increase GC allocation space for compilation in cabal.project.John MacFarlane1-2/+2
2019-11-22Re-add pandoc-citeproc to cabal.project.John MacFarlane1-0/+4
2019-11-21Use released pandoc-citeproc 0.16.4.John MacFarlane1-4/+0
2019-11-12Switch to new pandoc-types and use Text instead of String [API change].despresc1-6/+1
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-07FIx typo in cabal.project.John MacFarlane1-1/+1
2019-11-07Change merge behavior for metadata.John MacFarlane1-0/+4
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-29Changes to build with new doctemplates/doclayout.John MacFarlane1-4/+0
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-10Improve parsing of --defaults.John MacFarlane1-1/+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-09Update cabal.project to use dev version of doctemplates.John MacFarlane1-0/+5
2019-09-25Used released pandoc-citeproc 0.16.3.John MacFarlane1-1/+1
2019-09-22Update pandoc-citeproc commit.John MacFarlane1-1/+1
2019-09-22Use latest pandoc-citeproc.John MacFarlane1-1/+1
2019-09-22Use released doctemplatesJohn MacFarlane1-5/+0
2019-09-05Add partial styles.html in HTML5 template.John MacFarlane1-0/+5
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-5/+0
2019-08-26Cabal cleanup (#5693)Albert Krewinkel1-2/+2
* pandoc.cabal: remove conditionals for ghc < 8.0. Support for GHC 7.10 has been dropped. * pandoc.cabal: compile with `-Wcpp-undef` when possible * pandoc.cabal: compile with `-fhide-source-paths` if possible
2019-08-25Use dev version of doctemplates.John MacFarlane1-0/+4
2019-08-25Update cabal.project to use released doctemplates.John MacFarlane1-5/+0
2019-08-25Use new doctemplates, doclayout.John MacFarlane1-0/+5
+ 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-4/+0
2019-08-16cabal.project: remove options unsupported by GHC 8.0Albert Krewinkel1-2/+2
2019-08-16Lua: add module for AST element sequence traversalAlbert Krewinkel1-0/+5
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-05Use dev version of pandoc-citeproc.John MacFarlane1-1/+1
2019-07-28Use latest pandoc-citeproc.John MacFarlane1-1/+1
2019-06-04Update pandoc-citeproc and skylighting versions.John MacFarlane1-1/+1
2019-03-27Add ghc-options to cabal.project.John MacFarlane1-0/+2
2019-03-12Use latest pandoc-citeproc.John MacFarlane1-1/+1
2019-03-07Update pandoc-citeproc version in cabal.project.John MacFarlane1-1/+1
2019-03-03cabal.project - update pandoc-citeproc version.John MacFarlane1-1/+1
2019-02-15Use latest pandoc-citeproc (0.16.1).John MacFarlane1-1/+1
2019-02-07Use pandoc-citeproc-0.16.0.2John MacFarlane1-1/+1
2019-02-06cabal.project - use released pandoc-citeproc (take 2).John MacFarlane1-5/+4
2019-02-06cabal.project - use released pandoc-citeproc.John MacFarlane1-4/+4