aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-01-31Add footnote block text sampleoldmasterAndrew Dunning
2025-01-31Remove extra spaces in default reference docxAndrew Dunning
The line breaks are interpreted as whitespace, resulting in extra leading and trailing spaces in the reference file.
2024-03-09LaTeX reader: Make `withRaw` work inside `parseFromToks`.John MacFarlane
This is needed for raw environments to work inside table cells. Closes #9517.
2024-03-09Use dev version of doclayout.John MacFarlane
2024-03-09Use latest zip-archive release.John MacFarlane
2024-03-09Fix block headings support for unnumbered paragraphs (#9542)Oliver Fabel
`block-headings: true` seems to break unnumbered paragraphs and subparagraphs. This is due to the fact, that the unnumbered version uses the star macros \paragraph* and \subparagraph*. See issue #6018 for details.
2024-03-06Depend on dev version of texmath.John MacFarlane
2024-03-04Depend on djt 0.1.1.1John MacFarlane
2024-03-03Korean translations: delete colon in translation for 'to'.John MacFarlane
This was invalid YAML, and not desired anyway, since a colon is added.
2024-03-01Replace polyfill provider in HTML templates.John MacFarlane
The PR replaces polyfill.io with cdnjs.cloudflare.com/polyfill. polyfill.io has been acquired by Funnull, and the service has become unstable. This is essentially a cleaned up version of PR #2384 by @SukkaW; see the PR for more information.
2024-02-29Update man pages.pandoc-cli-3.1.12.23.1.12.2John MacFarlane
2024-02-29Bump to 3.1.12.2 (also pandoc-cli), update changelog, manual date.John MacFarlane
2024-02-29Depend on released djot 0.1.1.0John MacFarlane
2024-02-29SelfContained: add `role="img"` to svgs.John MacFarlane
This is needed in conjunction with `aria-label` for screen readers. Completes the fix to #9525.
2024-02-29SelfContained: Add aria-label to svg elements.John MacFarlane
Screen readers don't seem to pay attention to an alt attribute on svg. But they do read the aria-label. So if there's an alt attribute, we copy its contents to aria-label, unless there is already an aria-label. This will make pandoc's output with `--embed-resources` more accessible. Closes #9525.
2024-02-28Docx writer: don't copy over footnotePr in settings.xml...John MacFarlane
rom reference.docx. Closes #9522.
2024-02-28Fix regression in section numbering.John MacFarlane
Starting with pandoc 3.1.12, unnumbered sections incremented the section number. Closes #9516.
2024-02-28Docx reader: ensure that table captions are counted.John MacFarlane
Normally these occur outside the table element itself, but they should still be parsed as captions in this case. Closes #9518.
2024-02-28Docx reader: detect caption by style name not id.John MacFarlane
The styleId can change depending on the localization. Partially resolves #9518.
2024-02-28Docx reader: avoid emitting empty paragraph where caption was.John MacFarlane
2024-02-27Use commonmark-extensions 0.2.5.3John MacFarlane
2024-02-27Use released skylighting-format-blaze-htmlJohn MacFarlane
2024-02-27Update test suite for latest skylighting-format-blaze-html.John MacFarlane
2024-02-27Use latest skylighting-format-blaze-html.John MacFarlane
Closes #9520, fixing auto-wrapping of long source lines in HTML print media.
2024-02-22Makefile: improve epub-validation target.John MacFarlane
Use `--epub-cover-image` to catch issues that only arise with that. See #9493.
2024-02-22EPUB writer: omit EPUB2-specific meta tag on EPUB3.John MacFarlane
This caused a validation failure in epubs with cover images. Closes #9493.
2024-02-20Lua: avoid crashing when an error message is not valid UTF-8Albert Krewinkel
Invalid input bytes in error messages caused pandoc to crash with an encoding exception. Instead, the invalid bytes are now replaced with the Unicode replacement character U+FFFD.
2024-02-20Fix stack.yaml.John MacFarlane
2024-02-20stack.yaml: specify tls version.John MacFarlane
2024-02-20Require tls >= 2.John MacFarlane
2024-02-20Class: openUrl TLS negotiation fixes.John MacFarlane
With the release of TLS 2.0.0, the TLS library started requiring Extended Main Secret for the TLS handshake. This caused problems connecting to zotero's server and others that do not support TLS 1.3. This commit relaxes this requirement. Closes #9483.
2024-02-20Rely on dev version of djoths.John MacFarlane
2024-02-19Minor code cleanup.John MacFarlane
2024-02-19Markdown reader: fix regression in link parsing...John MacFarlane
with wikilinks extensions. This fixes a regression introduced in 3.1.12. Closes #9481.
2024-02-19Org reader/writer: support admonitions.John MacFarlane
Closes #9475.
2024-02-19Org writer: omit extra blank line at end of quote block.John MacFarlane
2024-02-19Typst writer: ensure that `-`, `+`, etc. are escaped at beginning of block.John MacFarlane
Our recent relaxing of escaping (#9386) caused problems for things like emphasized `-` characters that were rendered using `#strong[-]#`. This now gets rendered as `#strong[\-]`. Closes #9478.
2024-02-18LaTeX writer: fix bug when a language is specified in two different ways.John MacFarlane
If you used `lang: de-DE` but then had a span or div with `lang=de`, the preamble would try to load `ngerman` twice, leading to an error. This fix ensures that a language is only loaded once. Closes #9472.
2024-02-17Bump to 3.1.12.1, update changelog and manuals.pandoc-cli-3.1.12.13.1.12.1John MacFarlane
2024-02-16Powerpoint writer: properly handle math in headings and tables.John MacFarlane
This ensures that paragraphs containing math are wrapped in a `mc:AlternateContent` node as required. Closes #9465.
2024-02-16EPUB writer: omit EPUBv3-specific accessibility stuff on epub2.John MacFarlane
Closes #9469. Fixes a regression in 3.1.12.
2024-02-16Makefile: improve validate-epub.John MacFarlane
2024-02-16Makefile: make validate-epub check v2 output too.John MacFarlane
See #9469.
2024-02-16More fixes for SVG ids with `--self-contained`.John MacFarlane
This generalizes the fix to #9420 so it applies to things like `style="fill(url(#..."`. Closes #9467.
2024-02-15Minor changelog fix.pandoc-server-0.1.0.5pandoc-lua-engine-0.2.1.3pandoc-cli-3.1.123.1.12John MacFarlane
2024-02-15Add djot to cabal description.John MacFarlane
2024-02-15Minor changelog changes.John MacFarlane
2024-02-15Small changelog revisions.John MacFarlane
2024-02-15PDF: internal cleanup of tex2pdf path.John MacFarlane
Distinguish tmpDir and outDir, since they can come apart in the latexmk case.
2024-02-14Depend on released version of djot.John MacFarlane