aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-04-11add --emulatetest-windows-ciJohn MacFarlane
2024-04-11more diagnosticsJohn MacFarlane
2024-04-11minorJohn MacFarlane
2024-04-11Use checkout@v3 on windows ci.John MacFarlane
2024-04-11remove error diagnostic.John MacFarlane
2024-04-10add diagnostic.John MacFarlane
2024-04-10comment out non-Windows CIJohn MacFarlane
2024-04-10Markdown reader: auto-close unclosed divs.John MacFarlane
This applies to both fenced and HTML-ish varieties. Otherwise we face an exponential performance problem with backtracking. This also accords with the behavior of the `fenced_divs` extension in commonmark. A warning is issued when a div is implicitly closed. Closes #9635.
2024-04-10Logging: Add UnclosedDiv constructor for LogMessage.John MacFarlane
[API change]
2024-04-10Use dev version of texmath.John MacFarlane
2024-04-09Add clarification about `toc-title` in docx, pptx.John MacFarlane
See #9645.
2024-04-08ConTeXt writer: replace depreciated `\sc` with `\setsmallcaps`James P. Ascher
ConTeXt now depreciates `\sc` in favor of `\setsmallcaps`, see #9618
2024-04-08LaTeX writer: improve treatment of math inside soul commands.John MacFarlane
soul commands (`ul`, `hl`, `st`) are very fragile and the math must be handled specially. In #9597 we improved this for strikethrough but omitted the other soul environments. This patch generalizes the fix and a related fix for verbatim (#1294, #5529).
2024-04-07Fix bug in changelog.John MacFarlane
2024-04-07release-candidate build: use most recent version of checkout action.John MacFarlane
2024-04-07Bump pandoc-lua-engine to 0.2.1.4.pandoc-lua-engine-0.2.1.4John MacFarlane
2024-04-06Update AUTHORS.md.pandoc-cli-3.1.133.1.13John MacFarlane
2024-04-06Bump tls version in stack.yamlJohn MacFarlane
2024-04-06Bump to 3.1.13, update changelog and man pageJohn MacFarlane
2024-04-06Update changelog.John MacFarlane
2024-04-06Use released texmath, typst libraries.John MacFarlane
2024-04-06Org reader: Fix treatment of `id` property under heading.John MacFarlane
Cloess #9639.
2024-04-04fixed typo in doc/org.md (#9634)Chandrahas77
2024-04-04DokuWiki reader: fix issues with links.John MacFarlane
- Link text cannot contain formatting (e.g., `//` is not italics). Closes #9630. - An explicitly empty link text (`[[url|]]`) works the same as an omitted link text. Closes #9632.
2024-04-01Put `$` or `$$` around math in `csljson` output.John MacFarlane
Closes #9616.
2024-03-30Use current dev version of texmath.John MacFarlane
2024-03-29Require pandoc-lua-marshal 0.2.6Albert Krewinkel
Fixes an issue arising when the value of `content` properties on *BlockQuote*, *Figure*, and *Div* elements was an empty list. Fixes: #9613
2024-03-27Update lua-filters.md (#9611)Carlos Scheidegger
Fix formatting of `pandoc.utils.type` usage entry
2024-03-26ConTeXt writer: fix options order with `\externalfigure`.John MacFarlane
The dimensions should come before the class if both are present. See https://github.com/jgm/pandoc/discussions/9604#discussioncomment-8913491
2024-03-22Typst writer: put label after Span, not before.John MacFarlane
Labels get applied to preceding markup item.
2024-03-22Minor comment and indentation fixes.John MacFarlane
2024-03-22Typst reader: support Typst 0.11 table features.John MacFarlane
Colspans, rowspans, table head and foot. See #9588.
2024-03-22LaTeX writer: fix math inside strikeout (closes #9597).John MacFarlane
2024-03-21Typst reader: parse cell col/rowspans.John MacFarlane
TODO: - Handle table header and footer. - Assign columns to rows in a way that respects col/rowspans.
2024-03-21Fix typo in stack.yaml.John MacFarlane
2024-03-21stack.yaml - use typst-symbols 0.1.6.John MacFarlane
2024-03-21Typst reader: Further refactoring on the way to improved table support.John MacFarlane
2024-03-21Typst reader: refactor out parseTable.John MacFarlane
2024-03-21Use dev texmath and typst-hs.John MacFarlane
2024-03-20Typst writer: support Typst 0.11 table features. (#9593)John MacFarlane
* Typst writer: support Typst 0.11 table features. - colspans - rowspans - cell alignment overrides - relative column widths - header and footer - multiple table bodies with intermediate headers Row heads are not yet supported. The default typst template has been modified so that tables don't have lines by default. As is standard with pandoc, we only add a line under a header or over a footer. However, a different default stroke pattern can easily be added in a template. Closes #9588.
2024-03-19DocBook reader: add empty title to admonition div if not present.John MacFarlane
This allows admonition elements (e.g. `<note>`) to work with gfm admonitions even if the `<title>` is not present. Closes #9569.
2024-03-19Change lhs tests so they don't use `--standalone`.John MacFarlane
This will avoid test failures due to minor changes in skylighting versions, e.g. #9589.
2024-03-18Typst writer: more reliable escaping in inline `[..]` contexts.John MacFarlane
For example, we need to escape `[\1. April]` or it will be treated as an ordered list. Closes #9586.
2024-03-18Export `isOrderedListMarker` from T.P.Writers.Shared.John MacFarlane
[API change] This was formerly in T.P.Writers.Markdown.Inline, but we need to use it in the Typst writer too.
2024-03-18Typst writer: handle `unnumbered` on headings.John MacFarlane
Closes #9585.
2024-03-17Fix typo in changelogJohn MacFarlane
2024-03-17release-candidate action: update WiX path.pandoc-cli-3.1.12.33.1.12.3John MacFarlane
3.14 is now used.
2024-03-17Update date in manual and regenerate man pages.John MacFarlane
2024-03-17Update changelog.John MacFarlane
2024-03-17LaTeX reader: better handling of colwidths.John MacFarlane
Previously the parser just failed if the column width specified in `p{}` wasn't a multiple of `\linewidth`. This led to cases where content was skipped. Now we treat these as ColWidthDefault and silently parse the table. A future improvement could be to guess relative column widths from the dimensions specified, based on a default line width. Closes #9579.