From 34e928755fac89a45ac30e682abe6a9de9832982 Mon Sep 17 00:00:00 2001 From: Dolan Date: Thu, 21 Sep 2017 14:56:46 +0100 Subject: [PATCH] Add documentation links --- ts/docx/paragraph/indent.ts | 1 + ts/docx/paragraph/page-break.ts | 1 + ts/docx/paragraph/properties.ts | 1 + ts/docx/paragraph/spacing.ts | 1 + ts/docx/run/break.ts | 1 + 5 files changed, 5 insertions(+) diff --git a/ts/docx/paragraph/indent.ts b/ts/docx/paragraph/indent.ts index 8b74445c92..cbde90418e 100644 --- a/ts/docx/paragraph/indent.ts +++ b/ts/docx/paragraph/indent.ts @@ -1,3 +1,4 @@ +// http://officeopenxml.com/WPindentation.php import { XmlAttributeComponent, XmlComponent } from "../xml-components"; interface IIndentAttributesProperties { diff --git a/ts/docx/paragraph/page-break.ts b/ts/docx/paragraph/page-break.ts index f6957d3e7b..b64f0ecf9f 100644 --- a/ts/docx/paragraph/page-break.ts +++ b/ts/docx/paragraph/page-break.ts @@ -1,3 +1,4 @@ +// http://officeopenxml.com/WPtextSpecialContent-break.php import { Run } from "../run"; import { Attributes, XmlComponent } from "../xml-components"; diff --git a/ts/docx/paragraph/properties.ts b/ts/docx/paragraph/properties.ts index 0dc0d8eb66..16013986c0 100644 --- a/ts/docx/paragraph/properties.ts +++ b/ts/docx/paragraph/properties.ts @@ -1,3 +1,4 @@ +// http://officeopenxml.com/WPparagraphProperties.php import { XmlComponent } from "../xml-components"; export class ParagraphProperties extends XmlComponent { diff --git a/ts/docx/paragraph/spacing.ts b/ts/docx/paragraph/spacing.ts index af4c4e8f79..e3d139e65d 100644 --- a/ts/docx/paragraph/spacing.ts +++ b/ts/docx/paragraph/spacing.ts @@ -1,3 +1,4 @@ +// http://officeopenxml.com/WPspacing.php import { XmlAttributeComponent, XmlComponent } from "../xml-components"; export interface ISpacingProperties { diff --git a/ts/docx/run/break.ts b/ts/docx/run/break.ts index 1aad4ca484..75254a09c6 100644 --- a/ts/docx/run/break.ts +++ b/ts/docx/run/break.ts @@ -1,3 +1,4 @@ +// http://officeopenxml.com/WPtextSpecialContent-break.php import { XmlComponent } from "../xml-components"; export class Break extends XmlComponent {