summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-03-29HTML writer: wrap task items in labels.Albert Krewinkel
The `<label>` element ensures that the item description is associated with the checkbox, which is important for accessibility. See: #8729
2023-03-28Added note that the user will need to create the user data dir.John MacFarlane
See #8727.
2023-03-28Fix `\babelfont` in default latex template.John MacFarlane
The first invocation should not specify a language, because it's the default. If we specify a language, we get an error in some cases. Closes #8728.
2023-03-28Update documentation for org-modeChristian Christiansen
Add zero width space to the default values of pandoc-emphasis-pre and pandoc-emphasis-post. Zero width space was added to solve issue #8716.
2023-03-27Typst writer: fix alignment issue in lists.John MacFarlane
It's an aesthetic issue only; the first line had an extra space indent after the list marker.
2023-03-27Bump pandoc-cli to 0.1.1, depend on latest pandoc-lua-engineJohn MacFarlane
2023-03-27Bump pandoc-lua-engine to 0.2, depend on latest pandocJohn MacFarlane
2023-03-27macos release build: store architecture in a file.John MacFarlane
2023-03-27Fix macos release Makefile (syntax for ARCHITECTURE).John MacFarlane
2023-03-27Fix release-candidate build for macos.John MacFarlane
Use ghc 9.4 and cabal 3.10.
2023-03-27Another try at cirrus artifacts...John MacFarlane
2023-03-27Cirrus: another attempt to name artifacts.John MacFarlane
2023-03-27Add alias to cirrus tasks.John MacFarlane
2023-03-27Another try at compressed cirrus artifacts.John MacFarlane
2023-03-27Cirrus: try pre-zipping artifacts.John MacFarlane
2023-03-27Typst: Use customized term instead of custom macro for def lists.John MacFarlane
2023-03-27Typst writer: support column aligns in tables.John MacFarlane
2023-03-27Typst: fix output for syntax-highlighted inline code.Albert Krewinkel
2023-03-26Ensure that macos release packages are named after architecture.John MacFarlane
2023-03-26More Typst writer improvements.John MacFarlane
+ Update manual with variables for Typst. + Split `lang` metadata into separate `lang` and `region` for Typst. + Fix label positioning in Divs. + Fix text customizations (lang, region, font, size) so they actually work. + Update tests and man page.
2023-03-26Typst writer improvements.John MacFarlane
+ Fix non-decimal enumerated lists. + Fix endnotes ending with code blocks. + Improve default template to use a typst template. + Factor out definitions and typst template into partials. + Properly escape backslash and quote inside double quotes. + Update tests.
2023-03-26Update authors.John MacFarlane
2023-03-26Small update to package description.John MacFarlane
2023-03-26Bump to 3.1.2, update changelog.John MacFarlane
2023-03-26Update manual date and man pageJohn MacFarlane
2023-03-26Moved a misplaced command test.John MacFarlane
2023-03-26Support typst as a pdf-engine.John MacFarlane
2023-03-26Use released version of hslua-module-{system,text}Albert Krewinkel
2023-03-25Update stack.yamlJohn MacFarlane
2023-03-25Add typst writer.John MacFarlane
See #8713.
2023-03-25Depend on latest releases of texmath, doclayoutJohn MacFarlane
2023-03-25LaTeX template: set mainfontoptions with `\babelfont` too.John MacFarlane
Closes #8721.
2023-03-23T.P.App.CommandLineOptions: don't lowercase arg to `--from`/`--read`Albert Krewinkel
This prevented users to use custom writers with uppercase characters in their filenames. Format-normalization, including lower-casing of format identifiers, happens during format parsing.
2023-03-22Org reader: Allow zero width space as an escape characterChristian Christiansen
Allow the character U+200B to be used as an escape character as described in the Org-mode documentation https://orgmode.org/manual/Escape-Character.html Closes issue #8716.
2023-03-22DocBook reader: handle "book" for xref referencesAndres Freund
This also adds a test xref to book and part. See also 4ea0508e6 / #8712.
2023-03-22macos nighty build: use ghc 9.4.4.John MacFarlane
2023-03-21DocBook reader: handle `<part>`.John MacFarlane
Closes #8712.
2023-03-21Lua: Fix typo in pandoc.cli doc string.Albert Krewinkel
2023-03-20T.P.Format: add new function `formatFromFilePaths` [API Change] (#8710)Albert Krewinkel
* T.P.Format: export `formatFromFilePaths` [API change] * Lua: add function `pandoc.format.from_path` * Update lua-filters.md * The old T.P.App.FormatHeuristics module has been removed. This is an alternative to #8693.
2023-03-20HTML reader: fix behavior with `-native_spans-raw_html`.John MacFarlane
Previously with this configuration, `<span>`s were not treated as inline elements at all. Closes #8711.
2023-03-20Use dev doclayoutJohn MacFarlane
2023-03-20HTML writer: Remove redundant `nubOrd`.John MacFarlane
Now that we're doing `nubOrd` on classes at the end (when changing pandoc attributes to HTML attributes), we don't need to do it here.
2023-03-20Remove superfluous import.John MacFarlane
2023-03-20Update latex writer tests for change to default template.John MacFarlane
2023-03-20Lua: add Windows-specific note to pandoc.cli.repl docsAlbert Krewinkel
2023-03-20lua-filters: auto-generate docs for `pandoc.system` module.Albert Krewinkel
2023-03-20Lua: fix json.encode for nested AST elements.Albert Krewinkel
Ensures that objects with nested AST elements can be encoded as JSON.
2023-03-20lua-filters: auto-generate docs for `pandoc.text` module.Albert Krewinkel
2023-03-20Lua: load text module as `pandoc.text`.Albert Krewinkel
This only affects the name in the Lua-internal documentation. It is still possible to load the modules via `require 'text'`, although this is deprecated.
2023-03-20Fix highlight/underline with lualatex.John MacFarlane
We need the lua-ul package instead of soul, which doesn't work with lualatex. Updates default latex template. Closes #8707.