13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
![]() |
// http://www.datypic.com/sc/ooxml/e-m_e-1.html
|
||
|
import { XmlComponent } from "file/xml-components";
|
||
|
|
||
|
import { MathRun } from "../math-run";
|
||
|
|
||
|
export class MathSubScript extends XmlComponent {
|
||
|
constructor(readonly run: MathRun) {
|
||
|
super("m:sub");
|
||
|
|
||
|
this.root.push(run);
|
||
|
}
|
||
|
}
|