Skip to content

Commit 3e26589

Browse files
committed
Add preliminary support for mtable/mtr/mlabeledtr/mtd (some table attributes still need to be handled, and mlabeledtr currently drops the label).
1 parent 6be5b2b commit 3e26589

File tree

4 files changed

+577
-0
lines changed

4 files changed

+577
-0
lines changed

mathjax3-ts/output/chtml/Wrappers.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ import {CHTMLmrow, CHTMLinferredMrow} from './Wrappers/mrow.js';
3030
import {CHTMLmfrac} from './Wrappers/mfrac.js';
3131
import {CHTMLmsqrt} from './Wrappers/msqrt.js';
3232
import {CHTMLmroot} from './Wrappers/mroot.js';
33+
import {CHTMLmtable} from './Wrappers/mtable.js';
34+
import {CHTMLmtr, CHTMLmlabeledtr} from './Wrappers/mtr.js';
35+
import {CHTMLmtd} from './Wrappers/mtd.js';
3336
import {CHTMLsemantics, CHTMLannotation, CHTMLannotationXML, CHTMLxml} from './Wrappers/semantics.js';
3437
import {CHTMLTeXAtom} from './Wrappers/TeXAtom.js';
3538
import {CHTMLTextNode} from './Wrappers/TextNode.js';
@@ -44,6 +47,10 @@ export const CHTMLWrappers: {[kind: string]: typeof CHTMLWrapper} = {
4447
[CHTMLmfrac.kind]: CHTMLmfrac,
4548
[CHTMLmsqrt.kind]: CHTMLmsqrt,
4649
[CHTMLmroot.kind]: CHTMLmroot,
50+
[CHTMLmtable.kind]: CHTMLmtable,
51+
[CHTMLmtr.kind]: CHTMLmtr,
52+
[CHTMLmlabeledtr.kind]: CHTMLmlabeledtr,
53+
[CHTMLmtd.kind]: CHTMLmtd,
4754
[CHTMLsemantics.kind]: CHTMLsemantics,
4855
[CHTMLannotation.kind]: CHTMLannotation,
4956
[CHTMLannotationXML.kind]: CHTMLannotationXML,

0 commit comments

Comments
 (0)