summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-03-20HTML writer: avoid duplicate classes.John MacFarlane
Closes #8705.
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 tests: add more tests for pandoc.mediabag.Albert 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-18pandoc-cli: require hslua-cli-1.4.1Albert Krewinkel
This fixes a bug where the program would not enter interactive mode if `-v`, `-e`, or `-l` was used together with the `-i` command line flag.
2023-03-18stack.yaml: more version updatesAlbert Krewinkel
2023-03-18stack.yaml: Use newest hslua-* versionsAlbert Krewinkel
2023-03-17Update docx golden tests for style changes.John MacFarlane
2023-03-17Docx writer: include abstract title.John MacFarlane
Closes #8702. Uses localized term for abstract.
2023-03-17pandoc-cli: add a Lua REPLAlbert Krewinkel
2023-03-16CI/Nightly: use ghc 9.4 for windows build.John MacFarlane
2023-03-16CI: use latest point release for each ghc version.John MacFarlane
2023-03-16nightly: install ghc 9.4.4 for linux.John MacFarlane
Otherwise it will use 9.6.1 which doesn't yet work.
2023-03-15Lua: keep the Lua stack cleanAlbert Krewinkel
A metatable used during initialization was not properly removed from the stack. Likewise, accessing the CommonState from Lua previously led to the pollution of the Lua stack with a left-over value.
2023-03-15Fix template for babelfonts so it conforms with documentation.John MacFarlane
Closes #8697.
2023-03-15HTML writer: use img element instead of embed for .svg.gz...John MacFarlane
and .png.gz etc. Closes #8699.
2023-03-15Add some notes on using NiX to develop pandoc.John MacFarlane
2023-03-14HTML writer footnotes changes:John MacFarlane
When `--reference-location=section` or `=block`, use an `aside` element for the notes rather than a `section`. When `--reference-location=section`, include the `aside` element inside the section element, rather than outside. (In slide shows, this option causes footnotes on a slide to be displayed at the bottom of the slide.) Closes #8695.
2023-03-14Remove confusing comment.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-14Linux builds: Update ghc-musl URL.John MacFarlane
2023-03-14Expose formatFromFilePaths (#8693)Amy de Buitléir
Expose Text.Pandoc.App.FormatHeuristics (formatFromFilePaths) [API change] Closes #7590.
2023-03-14Markdown writer: use implicit figures if there's a caption but no alt.Albert Krewinkel
Closes: #8689
2023-03-13doc/org.md: suggest use of `-s` to get metadata fields.John MacFarlane
See #8688. Obsoletes #8690.
2023-03-13use Windows `%APPDATA%` variable to describe user data dir.Pablo RodrĂ­guez
Closes #8686.
2023-03-13Fix stack.yaml once moreAlbert Krewinkel
2023-03-13Require jira-wiki-markup 1.5.1Albert Krewinkel
This fixes a bug in the parser that caused text between two exclamation marks to be parsed as an image. The first `!` of image markup must now be followed by a non-space character; otherwise, the enclosed text is parsed as normal content. Fixes: #8680
2023-03-13Jira reader: add panel title as nested divAlbert Krewinkel
The title of a jira panel is added in a nested div as the first element of the div panel. Fixes: #8681
2023-03-13Fix testing with stackAlbert Krewinkel
2023-03-13Fix stack build after updating to new hslua versionAlbert Krewinkel
2023-03-13Switch to hslua-2.3Albert Krewinkel
2023-03-12More macos release candidate tweaks.John MacFarlane
2023-03-12Fix macos release candidate on GitHub actions.John MacFarlane
Change name of release candidate. Remove linux rc build, as we're building on cirrus.
2023-03-12Update RELEASE-CHECKLIST to integrate the new cirrus builds.John MacFarlane
2023-03-12Cirrus: more build improvements.John MacFarlane
Name artifact directories with the architecture type.
2023-03-12Cirrus: Use bash to run linux build script.John MacFarlane
Needed for pushd, popd.
2023-03-12Cirrus: brew update so we get more recent ghc.John MacFarlane
2023-03-12linux/make_artifacts.sh: fix syntax for pushd, popd.John MacFarlane
2023-03-12Fix BINPATH issues in linux and macos release build scripts.John MacFarlane
2023-03-12linux/make_artifacts.sh: fix typo.John MacFarlane
2023-03-12More cirrus fixes.John MacFarlane
2023-03-12Cirrus: Fix CABALOPTS env variable.John MacFarlane
2023-03-12More cirrus tweaks.John MacFarlane
Use cabal build rather than install.
2023-03-12More cirrus tweaks.John MacFarlane
Ensure that the binary is built again even if it exists in the cache.
2023-03-12Cirrus linux: tweak artifacts step.John MacFarlane