Add setting for not justify lines ending in soft line break

This commit is contained in:
fmuscolino
2019-03-05 17:17:06 +01:00
parent 4580a65a84
commit b179facca2
4 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import { XmlComponent } from "file/xml-components";
class DoNotExpandShiftReturn extends XmlComponent {
constructor() {
super("w:doNotExpandShiftReturn");
}
}
export class Compatibility extends XmlComponent {
constructor() {
super("w:compat");
}
public doNotExpandShiftReturn(): Compatibility {
this.root.push(new DoNotExpandShiftReturn());
return this;
}
}