summaryrefslogtreecommitdiff
path: root/stack.yaml
AgeCommit message (Collapse)Author
2022-07-11Use latest dev citeprocJohn MacFarlane
2022-07-01Use citeproc 0.8.John MacFarlane
2022-06-23Lua: ensure that tables marshaled via JSON arrays behave like Lists.Albert Krewinkel
This allows to invoke methods like `map` and `includes` on lists like `PANDOC_WRITER_OPTIONS.extensions`.
2022-06-19Require hslua-2.2.1, unless lua53 flag is set.Albert Krewinkel
This fixes a problem where the encoding used for Lua filenames would sometimes mismatch the encoding used by the OS. The file wasn't found when that happened, for example with an umlaut-containing filename on Windows. The change ensures that all characters of available in the default locale can be used in the filename.
2022-06-15Use dev version of citeproc.John MacFarlane
2022-06-03stack.yaml: fix pandoc-lua-marshal versionAlbert Krewinkel
2022-05-31Require skylighting 0.12.3.1 and update tests.John MacFarlane
2022-04-04stack.yaml: Use latest unicode-transforms.John MacFarlane
2022-04-03stack.yaml - use latest hslua-module-doclayout.John MacFarlane
2022-04-03Use latest doclayout (0.4)John MacFarlane
2022-04-02Use released commonmark 0.2.2, commonmark-extensions 0.2.3.1.John MacFarlane
2022-04-02Use citeproc 0.7.John MacFarlane
2022-04-02Use released version of texmath.John MacFarlane
2022-04-02Use released pandoc-types 1.22.2.John MacFarlane
2022-03-30stack.yaml - remove redundant clause for doclayout.John MacFarlane
2022-03-30Use latest dev doclayout, pandoc-typesJohn MacFarlane
2022-03-23Use current dev versions of citeproc, doclayout.John MacFarlane
2022-03-23Use latest dev citeproc.John MacFarlane
2022-03-20Use latest dev texmath.John MacFarlane
2022-03-12Depend on latest dev texmath.John MacFarlane
2022-03-11Use dev version of pandoc-types.John MacFarlane
This allows toJSONFilter to work with Meta and MetaValue.
2022-02-27Use latest dev commonmark-extensions.John MacFarlane
Closes #7942.
2022-02-24Update texmath version to build against.John MacFarlane
2022-02-23Use latest dev texmath.John MacFarlane
2022-02-19Relax upper bound for hslua, allow hslua-2.2. (#7929)Albert Krewinkel
Lua 5.4 is used by default after this is merged. Packagers may still include Lua 5.3 instead by building pandoc with `--constraint='hslua <2.2'`. Differences between 5.3 and 5.4 should not generally affect pandoc Lua filters. See list of incompatible changes here <https://www.lua.org/manual/5.4/manual.html#8.1>
2022-02-18Require skylighting 0.12.3.John MacFarlane
2022-02-17Lua: Use pandoc-lua-marshal 0.1.5.Albert Krewinkel
- Allow any type of callable object as argument to List functions `filter`, `map`, and `find_if`. These previously required the argument to be of type `function`, which was too restrictive. - Inline: the type of Image captions is now `Inlines` instead of `List`.
2022-02-13Use latest dev commonmark-extensions.John MacFarlane
2022-02-13Use latest dev commonmark, commonmark-extensions.John MacFarlane
2022-02-12Depend on latest commonmark.John MacFarlane
This resolves an issue with commonmark_x's support of strikeout.
2022-02-06Lua: add module `pandoc.layout` to format and layout textAlbert Krewinkel
2022-02-03Use unreleased citeproc.John MacFarlane
2022-01-29Switch to hslua-2.1Albert Krewinkel
This allows for some code simplification and improves stability.
2022-01-19Use skylighting 0.12.2.John MacFarlane
2022-01-14Use commonmark-pandoc 0.2.1.2.John MacFarlane
Fixes #7769.
2022-01-14Add pandoc-lua-marshal-0.1.3.1 to stack.yamlJohn MacFarlane
2022-01-12Use commonmark-extensions 0.2.3.John MacFarlane
2022-01-12Use ipynb 0.2.John MacFarlane
2022-01-11Use citeproc 0.6.0.1.John MacFarlane
2022-01-11Use latest texmath (0.12.4).John MacFarlane
2022-01-09Update commits for dev dependencies, allow text 2.0.John MacFarlane
2022-01-09Use dev version of citeproc.John MacFarlane
2022-01-01stack.yaml: add missing hslua-aeson entry to extra-depsAlbert Krewinkel
2021-12-30Use latest commonmark-hs.John MacFarlane
This allows a bare-word class attribute on fenced divs, as pandoc's Markdown reader now does.
2021-12-23Lua: use released pandoc-lua-marshal-0.1.3.Albert Krewinkel
Inlines, Blocks, and List objects now have an `__eq` metamethod, testing equality by comparing two lists element-wise.
2021-12-21Lua: simplify and deprecate function `pandoc.utils.equals`Albert Krewinkel
The function is no longer required for element comparisons; it is now an alias for the `==` operator.
2021-12-21Put sourcepos attribute on header, not enclosing div...John MacFarlane
with `-f commonmark+sourcepos`. Closes #7769.
2021-12-19Lua: change representation of TableHead, TableFoot, and Row values.Albert Krewinkel
The objects now also follow the principle that element attributes are accessible through the `.attr` field. Rows in `TableHead` and `TableFoot` are available via the `.rows` field. Row objects have a `.cells` field, containing the list of table cells. Closes: #7718
2021-12-18Use latest doctemplates, commonmark-extensions in stack.yaml.John MacFarlane
2021-12-14Use dev texmath.John MacFarlane