aboutsummaryrefslogtreecommitdiff
path: root/test/typst-reader.native
AgeCommit message (Collapse)Author
2025-10-26Use dev versions of typst-hs, texmath, typst-symbols.John MacFarlane
2025-02-28Update typst test.John MacFarlane
2024-12-03Depend on latest dev texmath, update tests.John MacFarlane
2024-11-06Fix typos (#10349)Andreas Deininger
2024-10-22Update typst tests for math symbol changes.John MacFarlane
2024-10-21Typst reader: avoid generating empty paragraphs.John MacFarlane
2024-09-08Typst reader: change how "block" elements are handled.John MacFarlane
Previously they were always parsed as divs. But actually they can occur in some "inline" contexts. Now we first try to parse them as inlines, and only as blocks if that fails. A surrounding Div or Span element is added only if there is an identifier.
2024-05-27Typst reader: handle inline bodies ending in a parbreak.John MacFarlane
E.g. `#strong[ test ]`. Here we simply skip the final parbreak. Treat this as a soft break, which will give results similar to the typst app.
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.
2024-01-05Typst reader: fix handling of `\overline`.John MacFarlane
Due to a typo, it was being incorrectly rendered as an `\underset`. Closes #9294.
2023-10-27Update typst-reader test for new typst-hs.John MacFarlane
2023-08-22Use lastest texmath, typst-symbols, typst.John MacFarlane
Targets typst 0.7.
2023-07-10Typst reader: fix regression in recognition of display math.John MacFarlane
The last release caused all math to be parsed as inline math. Closes #8949.
2023-07-06Add typst reader tests.John MacFarlane
Closes #8942.