I checked the spec, and "w:pPr" does not take any attributes. I also converted the paragraph tests to use the deep.equal style to get rid of some more jsonify!
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
import { Attributes, XmlComponent } from "../xml-components";
|
|
|
|
export class ParagraphProperties extends XmlComponent {
|
|
|
|
constructor() {
|
|
super("w:pPr");
|
|
}
|
|
|
|
public push(item: XmlComponent): void {
|
|
this.root.push(item);
|
|
}
|
|
}
|