summaryrefslogtreecommitdiff
path: root/MANUAL.txt
AgeCommit message (Collapse)Author
2024-03-17Update date in manual and regenerate man pages.John MacFarlane
2024-03-14Update manual date.John MacFarlane
2024-03-13Change broken link to IDML cookbook.John MacFarlane
Closes #9563. See https://community.adobe.com/t5/indesign-discussions/where-is-the-idml-specification/m-p/13170191#M490678 on the state of documentation.
2024-02-29Bump to 3.1.12.2 (also pandoc-cli), update changelog, manual date.John MacFarlane
2024-02-17Bump to 3.1.12.1, update changelog and manuals.John MacFarlane
2024-02-14Update manual date.John MacFarlane
2024-02-13Add djot reader and writer.John MacFarlane
Djot is a light markup syntax (https://djot.net). This patch adds djot as input and output formats. API changes: Add Text.Pandoc.Readers.Djot Add Text.Pandoc.Writers.Djot
2024-02-13MANUAL: note support for highlighting in man writer.John MacFarlane
2024-02-13Make LaTeX writer sensitive to `empty_paragraphs` extension.John MacFarlane
Closes #9443.
2024-02-06Add clarification to docs for `--resource-path`.John MacFarlane
Thanks to @cagix for the suggestion (#9417).
2024-02-03MANUAL: Revised docs for fontfallback.John MacFarlane
Moved ConTeXt-specific docs to the ConTeXt variables section.
2024-02-03ConTeXt template: support font fallback (#9361)Lawrence Chonavel
This uses the same YAML options as the LaTeX template.
2024-02-02Harmonize spelling of Markdown and MultiMarkdown (#9402)Salim B
MANUAL.txt: Markdown and MultiMarkdown are proper nouns and thus start with an uppercase letter.
2024-02-01EPUB accessibility additions (#9400)Iacobus1983
AccessModeSufficient and AccessibilitySummary are added. These metadata are optional according to the EPUB Accessibility 1.1 standard, but ACE Daisy checker flags ebooks for missing them (cf daisy/ace#389 and daisy/ace#400). With this commit: AccessModeSufficient is defaulted to "textual". AccessibilitySummary can be included via the metadata block.
2024-01-27EPUB writer: change default accessibilityFeatures.John MacFarlane
Don't include ARIA and MathML in general; they won't apply for epub2 or documents without math.
2024-01-26EPUB writer: Add accessibility metadata to EPUB metadata.John MacFarlane
accessModes, accessibilityFeatures, accessibilityHazards. Reasonable default values are used to ensure that pandoc's EPUBs conform to the EU Accessibilty Act requirements. Closes #9372.
2024-01-19Document font fallback variables.John MacFarlane
2024-01-05MANUAL.txt: Add `<pre>` to list of exceptions for...John MacFarlane
`markdown_in_html_blocks` extension. Closes #9305.
2024-01-05Update manual date.John MacFarlane
2023-12-15Bump to 3.1.11, update changelog.John MacFarlane
pandoc-cli version is updated in sync. man pages regenerated.
2023-12-11Update MANUAL.txt date and man page date.John MacFarlane
2023-12-08Docx writer: Use different style for block quotes in notes.John MacFarlane
Using "Footnote Block Text" for the style name, so it can be given a different font size if footnotes are. Closes #9243.
2023-12-04Add `alerts` extension.John MacFarlane
This enables GitHub style markdown alerts as a commonmark extension. <https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#alerts> This extension is now default for `gfm`. It can't be used with `markdown`, only with `commonmark` and variants.
2023-11-09MANUAL.txt: update defaults file docs for bibliography fields.John MacFarlane
Recommend using top-level `bibliography` `csl`, etc. instead of a nested `metadata` field. Reason: `${USERDATA}` and `${HOME}` are only expanded in these contexts, not in `metadata`. See #9173.
2023-11-03LaTeX template: include bookmark package unconditionally.John MacFarlane
This package produces better PDF bookmarks than hyperref and does it on the first pass. As a consequence, we now default to running LaTeX only once in producing a PDF (instead of twice). If a table of contents is present, we still have to run three times to get the page numbers.
2023-10-27Update MANUAL.txt date and man page.John MacFarlane
2023-10-26Add `bits` as synonym of `jats` as input format.John MacFarlane
Document in MANUAL.txt.
2023-10-23Extensions: Add `Ext_tex_math_gfm` constructor to Extension.John MacFarlane
[API change] This handles two GitHub-specific syntaxes for math. And document in MANUAL.txt. This is now default for `gfm`, in addition to `tex_math_dollars`. See #9121.
2023-10-20Markdown reader: fix blindspot with superscript in links.John MacFarlane
Previously `[^super^](#ref)` wasn't parsed as a link, due to code that was meant to prevent footnote markers from being recognized as reference links. This commit tightens up that code to avoid this bad effect. We have also added a new restriction on footnote labels: they cannot contain the characters `^`, `[`, or `]`. Though this is technically a breaking change, we suspect that the impact will be minimal, as it's very unlikely people would be using these characters in their note labels. Closes #8981.
2023-10-04MANUAL: Clarify that formatting can't cross line boundaries...John MacFarlane
in line blocks. Closes #9119.
2023-10-01Fix legacy option for citation (#9114)3w36zj6
Closes #8737.
2023-09-08Update manual and changelog.John MacFarlane
2023-08-31Update manual date and regenerate man page.John MacFarlane
2023-08-24Man writer: don't emit `.hy`...John MacFarlane
regardless of setting of `hyphenate` variable. See #9020.
2023-08-22Bump to 3.1.6.2, update manual date and man page.John MacFarlane
2023-08-06Bump dates, update dependencies.John MacFarlane
2023-07-20Update manual date, man page.John MacFarlane
2023-07-06Update manual dateJohn MacFarlane
2023-07-05Make modern AsciiDoc the target for `asciidoc`.John MacFarlane
The AsciiDoc community now regards the dialect parsed by `asciidoctor` as the official AsciiDoc syntax, so it should be the target of our `asciidoc` format. Closes #8936. The `asciidoc` output format now behaves like `asciidoctor` used to. `asciidoctor` is a deprecated synonynm. For the old `asciidoc` behavior (targeting the Python script), use `asciidoc_legacy`. The templates have been consolidated. Instead of separate `default.asciidoctor` and `default.asciidoc` templates, there is just `default.asciidoc`. Text.Pandoc.Writers.AsciiDoc API changes: - `writeAsciiDoc` now behaves like `writeAsciiDoctor` used to. - `writeAsciiDoctor` is now a deprecated synonym for `writeAsciiDoc`. - New exported function `writeAsciiDocLegacy` behaves like `writeAsciDoc` used to.
2023-07-04Fix example involving B. Russell.John MacFarlane
Closes #8940.
2023-06-28Allow all boolean flags to take an optional 'true' or 'false' valueSam S. Almahri
Default is true if no value is specified, so this is fully backwards-compatible. Closes #8788.
2023-06-27MANUAL: Add clarification on --section-divs. Closes #8882.John MacFarlane
2023-06-24Update man page.John MacFarlane
2023-06-07Allow `abstract-title` to be specified in docx metadata.John MacFarlane
Closes #8794.
2023-06-06Update manual date and man page.John MacFarlane
2023-06-06Add typst reader.John MacFarlane
New module Text.Pandoc.Readers.Typst [API change].
2023-05-18MANUAL: fix typosdhoward
2023-05-05MANUAL: Note that `#` fancy list markers don't work with commonmark (#8772)William Lupton
2023-05-05MANUAL: add commonmark fenced_div note (#8773)William Lupton
Note on how CommonMark's fenced divs differ.
2023-05-04Manual: move highlighting documentation (with minor adjustments)William Lupton