summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-02-14Depend on released version of djot.John MacFarlane
2024-02-14Allow containers 0.7.John MacFarlane
- Bump pandoc-lua-engine to 0.2.1.3. - Bump pandoc-server to 0.1.0.5.
2024-02-14Bump pandoc-server to 0.1.0.5 and allow containsers 0.7John MacFarlane
2024-02-14Move to lts-22 stack resolver.John MacFarlane
2024-02-14pandoc.cabal: add djot template.John MacFarlane
2024-02-14Fixe whitespace.John MacFarlane
2024-02-14Regenerate README.md.John MacFarlane
2024-02-14Update changelog.John MacFarlane
2024-02-14PDF: avoid readFileLazy.John MacFarlane
My hunch is that this is causing improperly cleaned up temp directory on Windows (#9460), but this will have to be confirmed.
2024-02-14Depend on released versions of commonmark-hs packages.John MacFarlane
2024-02-14Depend on released typst 0.5.0.1.John MacFarlane
2024-02-14Update AUTHORS.md.John MacFarlane
2024-02-14Update man page.John MacFarlane
2024-02-14Bump pandoc-cli version to 3.1.12, depend on pandoc 3.1.12.John MacFarlane
2024-02-14Bump version to 3.1.12.John MacFarlane
2024-02-14Update manual date.John MacFarlane
2024-02-14Update changelog.John MacFarlane
2024-02-14T.P.Readers: add readDjot to exports.John MacFarlane
2024-02-14Man writer: fix bug with long URLs.John MacFarlane
URLs with more than 68 characters didn't display properly because of wrapping. Closes #9458.
2024-02-14Fix name of djot reader test in pandoc.cabal.John MacFarlane
2024-02-13Fix some exports to avoid warnings on older ghc versions.John MacFarlane
2024-02-13Add djot reader and writer.John MacFarlane
Djot is a light markup syntax (https://djot.net). This patch adds djot as input and output formats. API changes: Add Text.Pandoc.Readers.Djot Add Text.Pandoc.Writers.Djot
2024-02-13Shared.addPandocAttributes: use `wrapper` attribute, not `wrap`.John MacFarlane
`wrap` is a standard HTML5 attribute.
2024-02-13Markdown reader: fix wikilinks extension to allow newlines in titles.John MacFarlane
Closes #9454.
2024-02-13MANUAL: note support for highlighting in man writer.John MacFarlane
2024-02-13Man writer: support syntax highlighting (limited).John MacFarlane
Currently only boldface and italics are supported. The `monochrome` style might be of use for those generating man pages. Closes #9446.
2024-02-13LaTeX reader: improve treatment of cref, Cref.John MacFarlane
Associate with `\cref` and `\Cref` the reference-type `ref+label` and `ref+Label`. So far we don't do anything fancy with these. Also, associate with `\vref` `ref` instead of `ref+page`. See #7463.
2024-02-13Typst writer: use `#ref` or `@` for links with `reference-type="ref"`.John MacFarlane
This attribute is added to LaTeX `\cref`, for example. See #7463.
2024-02-13Make LaTeX writer sensitive to `empty_paragraphs` extension.John MacFarlane
Closes #9443.
2024-02-13LaTeX reader: treat `\Cref` like `\cref` (for now).John MacFarlane
See #7463.
2024-02-12Typst writer: improve citation support.John MacFarlane
Emit `form: "prose"` or `form: "year"` qualifiers if the citation is author-in-text or suppress-author. Strip initial comma from suffix, since typst will add an extra one. Closes #9452.
2024-02-12HTML5 writer: Add suffix to multiple footnote section idsSam May
The first (and often only) `<aside id=footnotes>` block remains unchanged, however any additional blocks from `--reference-location` are distinguished as `#footnotes-2`, `#footnotes-3`, and so on. No other existing writer seems to implement per-section IDs, including HTML4.
2024-02-12Markdown writer: use different width fences for nested divs.John MacFarlane
Outer divs have longer fences. This aids clarity for the reader, making it easier to see where the div ends. It also makes the output compatible with some other implementations, e.g. micromark, which require different-width fences for nesting. Closes #9450.
2024-02-11Man reader: move spaces outside of emph/strong.John MacFarlane
This is needed to avoid problems in conversion to Markdown and some other formats. Closes #9445.
2024-02-09Powerpoint writer: Fix regression in layout for slides with figures.John MacFarlane
Closes #9442.
2024-02-09Fix id replacements in SVGs with clipping paths.John MacFarlane
This fixes `--embed-resources` when SVGs have `clip-path` attributes. Closes #9420.
2024-02-09Fix size of duplicated SVGs with `--embed-resources`.John MacFarlane
Closes #9439.
2024-02-08Allow zlib 0.7.John MacFarlane
2024-02-07MediaWiki reader: don't make leading blanks underscores...John MacFarlane
in image links. See #9425. (Not a complete fix for this issue, because `:file:` and the like are still not handled properly.)
2024-02-07MediaWiki reader: allow lowercase `image:`.John MacFarlane
Closes #9424.
2024-02-07Support "pagetotal" in converting BibLaTeX.John MacFarlane
2024-02-06Fix stack.yaml.John MacFarlane
2024-02-06Use latest commonmark-extensions.John MacFarlane
2024-02-06Add clarification to docs for `--resource-path`.John MacFarlane
Thanks to @cagix for the suggestion (#9417).
2024-02-05fix(ci): run 2nd docx validation workflow when script changesEdwin Török
Signed-off-by: Edwin Török <edwin@etorok.net>
2024-02-05fix(ci): explicitly choose a .Net versionEdwin Török
Upstream OOXML-Validator has added support for building with .Net 8.0 in commit 29af1086b5c78b6a213e70d2e1cb8da2a8e5b876. But that means OOXML-Validator can now be built for both .Net 6.0 and 8.0, so we need to pick which one we want when running, otherwise we get an error: ``` Unable to run your project Your project targets multiple frameworks. Specify which framework to run using '--framework'. ``` Signed-off-by: Edwin Török <edwin@etorok.net>
2024-02-05Use images from Quay (#9411)Olivier Benz
2024-02-05Typst reader: improve handling of inline `#quote`.John MacFarlane
Closes #9413.
2024-02-04Typst reader: fix handling of `dot()`, `tilde()`, `ddot()`.John MacFarlane
See jgm/typst-hs#38.
2024-02-04Typst reader: fix character used for `norm`.John MacFarlane
See jgm/typst-hs#38.