aboutsummaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2024-06-10doc/lua-filters.md: Document operators of the "Doc" type.Albert Krewinkel
2024-06-09lua-filters: auto-generate docs for `pandoc.layout` module.Albert Krewinkel
2024-06-08Lua: add function `pandoc.template.get`.Albert Krewinkel
The function allows to specify a template with the same argument value that would be used with the `--template` command line parameter. Closes: #9854 Co-authored-by: Carsten Gips <[email protected]>
2024-06-08Update more copyright dates to 2024.Albert Krewinkel
2024-06-07doc/lua-filters: autogenerate docs for module pandoc.templateAlbert Krewinkel
2024-06-07Lua: allow passing an environment to `run_lua_filter`.Albert Krewinkel
The default is now to use a *copy* of the global environment when running a filter; this ensures better separation when `run_lua_filter` is used multiple times. A custom environment can be specified via the optional third parameter.
2024-06-03typst,table - support '.typst:no-figure' and 'typst:figure:kind=kind' (#9778)Carlos Scheidegger
This extends support for fine-grained properties in Typst. If the `typst:no-figure` class is present on a Table, the table will not be placed in a figure. If the `typst:figure:kind` attribute is present, its value will be used for the figure's `kind`. These features are documented in `doc/typst-property-output.md`. Closes #9777.
2024-06-03Support `supplementary-material` in metadata for `jats_articlepublishing`.John MacFarlane
See #9818.
2024-05-28Lua: fix typo in `run_lua_filter`Albert Krewinkel
Fixes previous commit ad68ff34aeb78e26d98a593dfdaf6bc4933857fc.
2024-05-27Lua: add function `pandoc.utils.run_lua_filter` (#9803)Albert Krewinkel
2024-05-24doc/custom-writers.md: fix usage of Template in exampleAlbert Krewinkel
2024-05-10Lua: add a `pandoc.log` module.Albert Krewinkel
2024-05-05Lua: use hslua-module-zip-1.1.3 to fix the windows buildAlbert Krewinkel
2024-05-05Lua: use newest zip module.Albert Krewinkel
This adds a `symlink` function to Entry objects, allowing to check if an entry represents a symbolic link.
2024-05-05Lua: improve `pandoc.json.decode` docs.Albert Krewinkel
2024-05-04tools/update-lua-module-docs.lua: cleanup, fix codeAlbert Krewinkel
2024-05-04Lua: fix generated docs.Albert Krewinkel
Update and fix docs for `pandoc.types.Version` and `pandoc.utils.type`.
2024-04-16Lua: add new module `pandoc.image`Albert Krewinkel
The module provides basic querying functions for image properties.
2024-04-15Typst writer: property output (#9648)Gordon Woodhull
The Typst writer will pass on specially marked attributes as raw Typst parameters on selected elements. This allows extensive customization using filters. An attribute with key `typst:PROP` will set the PROP parameter on the corresponding Typst element. An attribute with key `typst:text:PROP` will set a parameter on a Typst `#set text()` rule or a text element. The feature has been implemented for the following elements: * span text * div and div text * table and table text * table cell and table cell text It would be possible to support more elements in the future. A separate document has been added that provides extensive documentation and examples of the use of this feature.
2024-04-04fixed typo in doc/org.md (#9634)Chandrahas77
2024-03-27Update lua-filters.md (#9611)Carlos Scheidegger
Fix formatting of `pandoc.utils.type` usage entry
2024-03-15Typos: remove repeated words (#9577)standstaff
Signed-off-by: standstaff <[email protected]>
2024-01-05getting-started.md: refer to GH discussions instead of pandoc-discuss.John MacFarlane
2023-08-25Lua filters documentation: remove reference to phrenology.John MacFarlane
Closes #9024.
2023-08-04Documentation - FAQs - Links (#8978)Diogo Almiro
Fix some links and add link text.
2023-06-22add to "Academic publishing workflows" (#8742)Vladimir Alexiev
resolves #8696
2023-05-17doc/lua-filters: use full field name in example (#8857)Matt Dodson
Remove old `.c` alias that mimics the JSON representation: - Since 2.15ish, the lua structure no longer closely resembles that JSON representation - even if it did, introductory examples should be explicit. Using an undocumented alias creates ambiguity.
2023-04-20doc/lua-filters.md: fix copy-and-paste error (#8798)thron7
2023-04-05doc/lua-filters.md: fix wrong anchorToni Dietze
2023-03-30doc/lua-filter.md: Fix typos. (#8734)perro tuerto
2023-03-28Update documentation for org-modeChristian Christiansen
Add zero width space to the default values of pandoc-emphasis-pre and pandoc-emphasis-post. Zero width space was added to solve issue #8716.
2023-03-20T.P.Format: add new function `formatFromFilePaths` [API Change] (#8710)Albert Krewinkel
* T.P.Format: export `formatFromFilePaths` [API change] * Lua: add function `pandoc.format.from_path` * Update lua-filters.md * The old T.P.App.FormatHeuristics module has been removed. This is an alternative to #8693.
2023-03-20lua-filters: auto-generate docs for `pandoc.system` module.Albert Krewinkel
2023-03-20lua-filters: auto-generate docs for `pandoc.text` module.Albert Krewinkel
2023-03-20Lua: load text module as `pandoc.text`.Albert Krewinkel
This only affects the name in the Lua-internal documentation. It is still possible to load the modules via `require 'text'`, although this is deprecated.
2023-03-20lua-filters: Move docs from module `text` to `pandoc.text`Albert Krewinkel
The latter is easier to use and more consistent with the other modules.
2023-03-20lua-filters.md: Generate docs for pandoc.utilsAlbert Krewinkel
The documentation in the Haskell sources has been updated.
2023-03-19lua-filters.md: auto-generate docs for more modulesAlbert Krewinkel
2023-03-19Lua: add info on when functions became available in pandocAlbert Krewinkel
2023-03-19lua-filters.md: generate docs from Haskell for pandoc.structureAlbert Krewinkel
2023-03-19lua-filters.md: autogenerate parts of the Lua API docsAlbert Krewinkel
2023-03-18Lua: add pandoc.cli.repl functionAlbert Krewinkel
2023-03-17pandoc-cli: add a Lua REPLAlbert Krewinkel
2023-03-15Add some notes on using NiX to develop pandoc.John MacFarlane
2023-03-14Add doc/extras.md.John MacFarlane
This was in the website repo; now we'll keep it here and copy it over.
2023-03-13doc/org.md: suggest use of `-s` to get metadata fields.John MacFarlane
See #8688. Obsoletes #8690.
2023-03-10doc/lua-filters.md: improve docs for `pandoc.zip`.Albert Krewinkel
2023-02-23Add note on converting from .doc format to FAQs.John MacFarlane
See #8654.
2023-02-19doc/press.md: Add article on CiTO in J Cheminform by @egonw.Albert Krewinkel
2023-02-18Doc: fix typo in run_json_filterMorgan Willcock