Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
bec2cd6
Add native Typst math output format (LaTeX/MathML → Typst)
OlgaRedozubova Mar 10, 2026
155b8a1
Deduplicate thousand-separator logic and address PR review fixes
OlgaRedozubova Mar 10, 2026
7a16211
Tighten isDerivativePattern, deduplicate SCRIPT_NODE_KINDS, fix post-…
OlgaRedozubova Mar 10, 2026
64b9939
Fix asymmetric and mismatched delimiters in matrix/array output
OlgaRedozubova Mar 10, 2026
4a94cf7
Handle \not negation in Typst output via cancel()
OlgaRedozubova Mar 11, 2026
f673fb3
Re-build
OlgaRedozubova Mar 11, 2026
6467224
Escape unpaired brackets in Typst function arguments and unify bracke…
OlgaRedozubova Mar 16, 2026
e7bb7cb
Fix \left.\right] with multiple children: keep all content inside one…
OlgaRedozubova Mar 16, 2026
f06a7da
Add space before ( after multi-char symbol names to prevent function-…
OlgaRedozubova Mar 16, 2026
f0a90a8
Escape colons in function-call arguments to prevent named-argument pa…
OlgaRedozubova Mar 16, 2026
e35455f
Fix false ‖…‖ pairing in bare delimiter scanner and escape func-call …
OlgaRedozubova Mar 16, 2026
b76fb19
Convert nested aligned/gathered inside mat()/cases() cells to mat() w…
OlgaRedozubova Mar 16, 2026
60bdfa4
Add display() for nested matrices/cases, propagate typst_inline throu…
OlgaRedozubova Mar 16, 2026
6764f64
Add scope boundaries to bracket pairing for msqrt, mroot, mfrac, menc…
OlgaRedozubova Mar 16, 2026
c88a7c1
Add reverse cases, hasTableFirst path, and inline tracking for table …
OlgaRedozubova Mar 16, 2026
d2fb002
Fix function-call paren heuristic in bracket scanner
OlgaRedozubova Mar 17, 2026
5297070
Escape colons inside lr() to prevent named-argument parsing
OlgaRedozubova Mar 17, 2026
c4548d9
Group consecutive non-Latin mi nodes to preserve combining characters
OlgaRedozubova Mar 17, 2026
c958074
Fix limits() placement for \underset/\overset with overline/underline…
OlgaRedozubova Mar 17, 2026
aa849c3
Escape inner brackets inside lr() and fix limits() for underset/overset
OlgaRedozubova Mar 17, 2026
561a35e
Add missing symbol mappings: integral.surf, slash.o, lt.approx, gt.ap…
OlgaRedozubova Mar 17, 2026
f9c6a76
Center #box and #circle in block mode, add missing symbol mappings
OlgaRedozubova Mar 17, 2026
99924ec
Fix unbalanced paren escaping in accent/script handlers
OlgaRedozubova Mar 17, 2026
3d9327b
Use lr(\) ...) for longdiv/lcm to stretch delimiter to content height
OlgaRedozubova Mar 17, 2026
38c1d4b
Handle \xcancel cross mode, escape unbalanced parens in script grouping
OlgaRedozubova Mar 17, 2026
aeb6267
Gate mover/munder accent logic on accent/accentunder attributes
OlgaRedozubova Mar 17, 2026
81c5419
Collapse constructed long arrows and flatten nested mover/munder
OlgaRedozubova Mar 17, 2026
18c4210
Selective box strokes for array borders, cap vline indices, word-safe…
OlgaRedozubova Mar 17, 2026
5acbfc0
Fix missing space between scripted node and ( inside bare-delimiter p…
OlgaRedozubova Mar 17, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions es5/browser/auto-render.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions es5/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion es5/context-menu.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions es5/index.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions lib/contex-menu/menu/consts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export declare enum eMathType {
mathmlword = "mathmlword",
tsv = "tsv",
csv = "csv",
typst = "typst",
typst_inline = "typst_inline",
table_markdown = "table-markdown",
smiles = "smiles"
}
4 changes: 4 additions & 0 deletions lib/contex-menu/menu/consts.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/contex-menu/menu/consts.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions lib/contex-menu/menu/menu-item.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/contex-menu/menu/menu-item.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions lib/contex-menu/menu/menu-items.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/contex-menu/menu/menu-items.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions lib/helpers/parse-mmd-element.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading