UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

13 lines (9 loc) 293 B
// http://www.datypic.com/sc/ooxml/e-m_r-1.html import { XmlComponent } from "file/xml-components"; import { MathText } from "./math-text"; export class MathRun extends XmlComponent { constructor(text: string) { super("m:r"); this.root.push(new MathText(text)); } }