More math components
This commit is contained in:
13
src/file/paragraph/math/radical/math-degree.ts
Normal file
13
src/file/paragraph/math/radical/math-degree.ts
Normal file
@ -0,0 +1,13 @@
|
||||
// http://www.datypic.com/sc/ooxml/e-m_deg-1.html
|
||||
import { XmlComponent } from "file/xml-components";
|
||||
import { MathComponent } from "../math-component";
|
||||
|
||||
export class MathDegree extends XmlComponent {
|
||||
constructor(child?: MathComponent) {
|
||||
super("m:deg");
|
||||
|
||||
if (!!child) {
|
||||
this.root.push(child);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user