From 42f5402551064a33c81bddf3e89926513ad6a3be Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Wed, 18 May 2016 17:06:50 +0100 Subject: [PATCH] added tab and fixed italics --- ts/docx/run/index.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/ts/docx/run/index.ts b/ts/docx/run/index.ts index f3866a11fa..e503108fa9 100644 --- a/ts/docx/run/index.ts +++ b/ts/docx/run/index.ts @@ -17,7 +17,7 @@ export class Run extends XmlComponent { return this; } - italics(): Run { + italic(): Run { this.properties.push(new Italics()); return this; } @@ -27,7 +27,12 @@ export class Run extends XmlComponent { return this; } - break() : Run { + break(): Run { + // TODO + return this; + } + + tab(): Run { // TODO return this; }