Option to use Typst as math-mode markdown language #10381
sverrirarnors
started this conversation in
Ideas
Replies: 2 comments 2 replies
-
I believe you could achieve this with a Lua filter. The filter would just match Math elements and use If you want to remove that limitation, but confine your output to typst, then your filter could simply convert Math elements into RawInline "typst" elements, which would pass through to typst verbatim. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As I understand it, Pandoc treats text within
$$
as TeX math.As Typst is gaining traction (fx. now bundled with Quarto), it would be nice to have an option to make Pandoc handle text within
$$
as Typst math instead.Currently, this can be kinda solved in Quarto with raw blocks (see quarto-dev/quarto-cli#11368), but a native solution would be great.
Beta Was this translation helpful? Give feedback.
All reactions