added support for hyperlinks

This commit is contained in:
Ivan Lopez
2018-05-06 22:20:56 -05:00
parent 8108eca2fa
commit ac40e13e33
4 changed files with 71 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// http://officeopenxml.com/WPhyperlink.php
import { XmlComponent } from "file/xml-components";
import { TextRun } from "../run";
import { HyperlinkAttributes } from "./hyperlink-attributes";
export class Hyperlink extends XmlComponent {
public linkId: number;
constructor(text: string, relationshipsCount: number) {
super("w:hyperlink");
this.linkId = relationshipsCount + 1;
this.root.push(new HyperlinkAttributes({
id: `rId${this.linkId}`,
history: 1,
}));
this.root.push(new TextRun(text).style("Hyperlink"));
return this;
}
}