We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c723bf commit 9cb280aCopy full SHA for 9cb280a
.changeset/silver-zebras-hide.md
@@ -0,0 +1,5 @@
1
+---
2
+"myst-spec-ext": patch
3
4
+
5
+Add typst option to inlineMath node
packages/myst-spec-ext/src/types.ts
@@ -68,7 +68,11 @@ export type AlgorithmLine = Parent & {
68
enumerator?: string;
69
};
70
71
-export type InlineMath = SpecInlineMath & Target;
+export type InlineMath = SpecInlineMath &
72
+ Target & {
73
+ /** Typst-specific math content. If not provided, LaTeX content will be converted to Typst. */
74
+ typst?: string;
75
+ };
76
77
export type Math = SpecMath & {
78
kind?: 'subequation';
0 commit comments