summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-06Use released typst 0.3.0.0.John MacFarlane
2023-07-06Depend on released skylighting 0.13.4.John MacFarlane
2023-07-06Use released pandoc-types.John MacFarlane
2023-07-06Provisional version bump to 3.1.5.John MacFarlane
2023-07-06Provisional changelog update.John MacFarlane
2023-07-06Use latest dev typst-hs.John MacFarlane
2023-07-06Typst reader: filter out CR in raw.John MacFarlane
2023-07-06Add typst reader tests.John MacFarlane
Closes #8942.
2023-07-06Typst reader: handle blockish content for link element.John MacFarlane
2023-07-06Use latest dev typst-hsJohn MacFarlane
2023-07-06Rewrite Typst reader.John MacFarlane
This structure should make it easier to add new block and inline handlers.
2023-07-06Typst reader: allow block-level content in text element.John MacFarlane
2023-07-06Move test/tables.asciidoctor -> test/tables.asciidoc_legacy.John MacFarlane
2023-07-05MediaWiki reader: revise treatment of "link trail."John MacFarlane
Previously we only included ASCII letters. That is correct for English but not for, e.g., Spanish (see comment in #8525). A safer approach is to include all letters except those in the CJK unified ideograph ranges.
2023-07-05Use latest dev typst-hs.John MacFarlane
2023-07-05Update typst-hs revision.John MacFarlane
2023-07-05Typst reader: handle style, align, place in inline contexts too.John MacFarlane
2023-07-05Use latest dev typst-hsJohn MacFarlane
2023-07-05Fix asciidoc testsJohn MacFarlane
2023-07-05Make modern AsciiDoc the target for `asciidoc`.John MacFarlane
The AsciiDoc community now regards the dialect parsed by `asciidoctor` as the official AsciiDoc syntax, so it should be the target of our `asciidoc` format. Closes #8936. The `asciidoc` output format now behaves like `asciidoctor` used to. `asciidoctor` is a deprecated synonynm. For the old `asciidoc` behavior (targeting the Python script), use `asciidoc_legacy`. The templates have been consolidated. Instead of separate `default.asciidoctor` and `default.asciidoc` templates, there is just `default.asciidoc`. Text.Pandoc.Writers.AsciiDoc API changes: - `writeAsciiDoc` now behaves like `writeAsciiDoctor` used to. - `writeAsciiDoctor` is now a deprecated synonym for `writeAsciiDoc`. - New exported function `writeAsciiDocLegacy` behaves like `writeAsciDoc` used to.
2023-07-04Fix example involving B. Russell.John MacFarlane
Closes #8940.
2023-07-04Use latest dev typst-hs.John MacFarlane
2023-07-04stack.ymal - add toml-parser (dep of typst-hs).John MacFarlane
2023-07-04stack.yaml: update typst-symbols version.John MacFarlane
2023-07-04Typst writer: support `unlisted` class in headings.John MacFarlane
Closes #8941.
2023-07-04Use latest dev typst-hs.John MacFarlane
2023-07-04Use latest dev typst-hs.John MacFarlane
2023-07-03Get things working with latest dev version of typst.John MacFarlane
This supports package loading (as long as the package has been cached or is local).
2023-07-03Typst writer: consolidate bibliography files...John MacFarlane
into one `#bibliography` command. (Separate bibliographies are not possible.) Closes #8937.
2023-07-02Update line-through for asciidoc writer to custom inline style (#8934)Kevin Broch
Closes #8933
2023-07-01Typst writer: some math improvements.John MacFarlane
2023-07-01Docx writer: make relative widths work in tables.John MacFarlane
This didn't work before because we were missing an attribute that tells Word to used fixed widths rather than computing optimal ones.
2023-06-30Fix stack.yaml again!John MacFarlane
2023-06-30Fix stack.yaml; typst-symbols.John MacFarlane
2023-06-30Fix stack.yaml.John MacFarlane
2023-06-30Update stack.yaml.John MacFarlane
2023-06-30Typst reader: improve info message for skipped elements.John MacFarlane
2023-06-30Fix typst reader for new typst-hs version.John MacFarlane
2023-06-30Depend on dev version typst-hs.John MacFarlane
(For typst 0.5 support.)
2023-06-30Typst writer: improve handling of autolinks.John MacFarlane
Closes #8931.
2023-06-29stack: add pkg-config to nix packages (#8927)pacien
Without this, some dependencies refuse to build.
2023-06-28Markdown reader: Further strictness annotations.John MacFarlane
2023-06-28Markdown reader: add strictness annotations.John MacFarlane
This fixes the memory leak noted in #8762. Closes #8762.
2023-06-28LaTeX writer: Prevent babel language from being imported twice.John MacFarlane
Close #8925.
2023-06-28Makefile: use -j instead of -j4John MacFarlane
2023-06-28CI: Another try to specify cabal store directory.John MacFarlane
2023-06-28CI: fix path for cabal global store.John MacFarlane
The GitHub action now uses `$XDG_STATE_HOME/cabal`, which is why our cache wasn't working. See https://github.com/haskell/actions/issues/210
2023-06-28DokuWiki writer: fix lists with Div elements.John MacFarlane
The DokuWiki writer doesn't render Divs specially, so their presence in a list (e.g. because of custom-styles) need not prevent a regular DokuWiki list from being used. (Falling back to raw HTML in this case is pointless because no new information is given.) Closes #8920.
2023-06-28Allow all boolean flags to take an optional 'true' or 'false' valueSam S. Almahri
Default is true if no value is specified, so this is fully backwards-compatible. Closes #8788.
2023-06-28Add comment in cabal.project.John MacFarlane