merge with master, demo27 became demo28

This commit is contained in:
Sergio Mendonça
2018-09-21 07:40:58 -03:00
22 changed files with 164 additions and 86 deletions

View File

@ -25,6 +25,17 @@ export class BoldComplexScript extends XmlComponent {
}
}
export class CharacterSpacing extends XmlComponent {
constructor(value: number) {
super("w:spacing");
this.root.push(
new Attributes({
val: value,
}),
);
}
}
export class Italics extends XmlComponent {
constructor() {
super("w:i");