aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-09Bump pandoc-lua-engine to 0.1.1pandoc-lua-engine-0.1.13.1John MacFarlane
2023-02-09Update AUTHORS.md.John MacFarlane
2023-02-09Update changelog.John MacFarlane
2023-02-09pandoc-lua-engine: require pandoc >= 3.1.John MacFarlane
2023-02-09Citeproc: Fix bug in metaValueToReference.John MacFarlane
This bug caused us to get some repeated content when converting MetaBlock to Inlines. Closes #8611.
2023-02-09PPTX writer: fix handling of simple figuresAlbert Krewinkel
This ensures that simple figures are displayed in the same way as before the introduction of a dedicated `Figure` constructor in the AST. Closes: #8565
2023-02-09Minor changelog update.John MacFarlane
2023-02-09Lua: add field `chunk_template` to WriterOptions objects [API change]Albert Krewinkel
The PathTemplate type exported from Text.Pandoc.Chunks is now an instance of the ToJSON and FromJSON classes. Closes: #8607
2023-02-08Windows CI: don't cache local packages.John MacFarlane
We're running into a stack bug with internal libraries. See commercialhaskell/stack#6046.
2023-02-08pandoc-lua-engine: relax version bound to allow pandoc 3.1.John MacFarlane
2023-02-08Update manual date and man page.John MacFarlane
2023-02-08Bump to 3.1 and update changelog.John MacFarlane
2023-02-08stack.yaml: update skylighting deps.John MacFarlane
2023-02-08CI: workaround ghcup issue on GitHub actions CI.John MacFarlane
See https://discourse.haskell.org/t/incident-github-actions-ci-failure-ghcup/5761
2023-02-08Use released skylighting 0.13.2.1John MacFarlane
2023-02-07Fix typosMartin Joerg
2023-02-05LaTeX writer: include short figure/table caption if one is given.Albert Krewinkel
Short captions are used by LaTeX when generating a the list of figures or list of tables. Adding a short caption will now overwrite the full caption in these lists.
2023-02-04Improve handling of `%` in bib(la)tex parsing.John MacFarlane
bibtex/biblatex seem to pass through an unescaped `%` inside braces or quotes; it won't escape the closing brace. So we'll do the same. This prevents the need for our previous special treatment of url and doi fields. Closes #8597.
2023-02-01More tweaks on INSTALL.md.John MacFarlane
2023-02-01INSTALL: direct people to cabal install pandoc-cli.John MacFarlane
2023-02-01Handle % in biblatex doi field.John MacFarlane
Closes #8595.
2023-02-01Add some diagnostics to newif test.John MacFarlane
2023-01-30Add new `--chunk-template` option (closes #8581).John MacFarlane
* Add `--chunk-template` CLI option, allowing more control over the chunk filenames in chunked HTML output. * Text.Pandoc.App: Add `optChunkTemplate` constructor to Opt [API change]. * Text.Pandoc.Options: add `writerChunkTemplate` contsructor to WriterOptions [API change]. * Text.Pandoc.Chunks: add Data, Typeable, Generic instances for PathTemplate.
2023-01-29Add support for Textile footnote backlinks (#8585)Stephen Altamirano
Backlinking from footnotes is already the behavior of `Note` values when writing HTML. This adds parsing support for the explicit backlinking syntax in Textile as described here: https://textile-lang.com/doc/footnotes Previously, these lines would be interpreted as a new paragraph beginning with "fn3^." in text.
2023-01-29ODT reader: fix blockquote indent detectionDaniel Kessler
The ODT reader is supposed to detect blockquotes by checking a paragraph style's indentation level. But it's broken for two reasons: * The parser fails on non-integers. So "1in" will get read as 25mm, but "1.0in" fails. By default, the Quotations style is "0.3937in". * The reader doesn't check indentation levels of parent styles. In my test documents, LibreOffice often creates child styles for individual paragraphs, so it's important to check parents (ODT files created by the Pandoc ODT writer don't have this issue though). I added a new test "blockquote2" whose ODT file is generated directly from the corresponding Markdown file with pandoc. Fixes #3437.
2023-01-29Fix skylighting clause for skylighting-core.John MacFarlane
2023-01-29Use dev skylighting-coreJohn MacFarlane
2023-01-29Fix 3.0 regression with `--print-highlight-style` option.John MacFarlane
Closes #8586.
2023-01-28doc/lua-filters.md: document 'Figure' type and constructorAlbert Krewinkel
2023-01-28Textile reader: don't allow brackets in URLs.John MacFarlane
Closes #8582.
2023-01-27Hyperlink reference to extension in manual (#8583)Salim B
2023-01-25Add exit trapping code back to make_artifacts.sh.3.0.1John MacFarlane
Otherwise it never exits!
2023-01-25Update changelog.John MacFarlane
2023-01-25Ensure that automatically set variables ...John MacFarlane
`pandoc-version`, `outputfile`, `title-prefix`, `epub-cover-image`, `curdir`, `dzslides-core` can be overridden by `--variable` on the command line. Previously they would create lists in the template Context, which is not desirable.
2023-01-25Bump to 3.0.1.John MacFarlane
2023-01-25Update AUTHORS.mdJohn MacFarlane
2023-01-25Update changelog.John MacFarlane
2023-01-25Update man pages.John MacFarlane
2023-01-25Update manual date.John MacFarlane
2023-01-25stack.yaml - use latest hslua-listJohn MacFarlane
2023-01-25stack.yaml - bump texmath version.John MacFarlane
2023-01-24Require texmath 0.12.6 - for better MathML output.John MacFarlane
2023-01-23pandoc.cabal: fix upper bound for texmath.John MacFarlane
2023-01-23LaTeX reader: Fix bug in macro resolution for environments.John MacFarlane
This is a regression in pandoc 3.0 that affects environments with arguments. Closes #8573.
2023-01-23LaTeX reader: Fix small logic error in macro parsing code.John MacFarlane
2023-01-23Makefile: use -f-export-dynamic in CABALOPTSJohn MacFarlane
This is helpful when building in nix shell.
2023-01-23Fix typoCarlos Scheidegger
`#types-chunkeddoc` -> `#type-chunkeddoc`
2023-01-21Fix use of extensions with custom readers.John MacFarlane
Closes #8571.
2023-01-21T.P.Writers.Shared: export setupTranslations [API change].John MacFarlane
Use this in HTML and OpenDocument writers.
2023-01-20make_artifacts.sh: fix quoting.John MacFarlane