aboutsummaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)Author
2025-12-06Implement `reset-citation-positions` class on headings.reset-positionJohn MacFarlane
When the `reset-citation-positions` class is added to a top-level heading, `--citeproc` will reset position information at that point in the document. This is needed in order to ensure that the first citation in a chapter to a work that has been cited in a previous chapter will not be in abbreviated form. Requires a dependency on a development version of citeproc.
2025-12-05Use latest dev asciidoc.John MacFarlane
2025-12-04Use latest asciidoc.John MacFarlane
2025-12-04Use dev typst-hsJohn MacFarlane
2025-12-03Use dev asciidoc.John MacFarlane
2025-11-30Use released asciidoc 0.1.John MacFarlane
2025-11-30Use released djot 0.1.2.4.John MacFarlane
2025-11-30Use released texmath 0.13.0.2.John MacFarlane
2025-11-30Use released typst 0.8.1.John MacFarlane
2025-11-30Use released citeproc 0.12.John MacFarlane
2025-11-30Use latest dev asciidoc.John MacFarlane
2025-11-29Add asciidoc as an input format.John MacFarlane
New exported module Text.Pandoc.Readers.AsciiDoc, exporting readAsciiDoc [API change]. The bulk of parsing is handled by the asciidoc library. Closes #1456.
2025-11-19Use latest dev citeproc.John MacFarlane
2025-11-18Use latest dev citeproc.John MacFarlane
2025-11-18Use latest dev typst-hs.John MacFarlane
2025-11-10Use latest dev djoths.John MacFarlane
2025-10-30Typst reader: handle document metadata and `#title`.John MacFarlane
See jgm/typst-hs#80. Note that previously, the typst reader never returned document metadata. Now it does, even if the typst document does not contain a `#title` function that would result in actually printing the title block.
2025-10-27Fix stack.yaml.John MacFarlane
2025-10-27stack.yaml - fix syntax.John MacFarlane
2025-10-26Use dev versions of typst-hs, texmath, typst-symbols.John MacFarlane
2025-10-24Use latest dev citeproc.John MacFarlane
2025-10-19Use released citeproc 0.11.John MacFarlane
2025-10-18Update to use latest dev citeproc.John MacFarlane
Fixed golden test regeneration in Docx reader test.
2025-10-05Use released texmath 0.13.0.1John MacFarlane
2025-10-04Use dev version of texmath.John MacFarlane
2025-09-27Use released djot 0.1.2.3.John MacFarlane
2025-09-19Use dev version of djoths.John MacFarlane
2025-09-06stack.yaml - use lts-24.9John MacFarlane
2025-09-06Use skylighting 0.14.7John MacFarlane
2025-09-03Used released typst 0.8.0.2John MacFarlane
2025-09-03Use released texmath 0.13John MacFarlane
2025-09-03Use released citeproc-0.10John MacFarlane
2025-09-03Use released doclayout 0.5.0.1John MacFarlane
2025-09-02Use latest dev citeproc.John MacFarlane
2025-09-02Use latest dev citeproc.John MacFarlane
2025-08-30Use dev typst-hs.John MacFarlane
2025-08-27Use latest dev texmath.John MacFarlane
2025-08-26Add dev doclayout to stack.yaml.John MacFarlane
2025-08-11Use latest dev texmath.John MacFarlane
2025-08-09Lua: require hslua-module-system 1.2.3Albert Krewinkel
This provides List methods to the value returned by `pandoc.system.list_directory`. Closes: #11032
2025-08-01Use latest dev citeproc.John MacFarlane
Add test for #11013. Closes #11013.
2025-08-01Use latest dev texmath.John MacFarlane
2025-07-24Use latest dev citeproc.John MacFarlane
This solves the problem of unwanted capitalization of names at the beginning of citations in footnotes. Closes #10983.
2025-07-23Fix stack.yaml.John MacFarlane
2025-07-23Use dev texmath.John MacFarlane
2025-07-23Use latest dev citeproc.John MacFarlane
2025-07-23Use latest dev citeproc.John MacFarlane
Closes #10983 by allowing `nocase` spans to be used to suppress capitalization of initial word in a footnote.
2025-07-23Lua: add function `pandoc.path.exists`.Albert Krewinkel
The functions allows to check the existence of file-system objects.
2025-07-20Use latest dev citeproc.John MacFarlane
2025-06-30Lua: add more UTF-8-aware file operations to `pandoc.system`.Albert Krewinkel
Functions that expect UTF-8-encoded filenames should make it easier to write platform-independent scripts, as the encoding of the actual filename depends on the system. Additionally, this also adds a generalized method to run commands, and functions to retrieve XDG directory names. The new functions are `command`, `copy`, `read_file`, `remove`, `rename`, `times`, `write_file`, `xdg`.