Merge pull request #234 from dolanmiu/feat/improve-docs
Make ImportDotx easier to read
This commit is contained in:
@ -15,10 +15,22 @@ const item2 = new Paragraph("line with contextual spacing");
|
||||
const item3 = new Paragraph("line without contextual spacing");
|
||||
const item4 = new Paragraph("line without contextual spacing");
|
||||
|
||||
item1.setNumbering(concrete, 0).spacing({before: 200}).contextualSpacing(true);
|
||||
item2.setNumbering(concrete, 0).spacing({before: 200}).contextualSpacing(true);
|
||||
item3.setNumbering(concrete, 0).spacing({before: 200}).contextualSpacing(false);
|
||||
item4.setNumbering(concrete, 0).spacing({before: 200}).contextualSpacing(false);
|
||||
item1
|
||||
.setNumbering(concrete, 0)
|
||||
.spacing({ before: 200 })
|
||||
.contextualSpacing(true);
|
||||
item2
|
||||
.setNumbering(concrete, 0)
|
||||
.spacing({ before: 200 })
|
||||
.contextualSpacing(true);
|
||||
item3
|
||||
.setNumbering(concrete, 0)
|
||||
.spacing({ before: 200 })
|
||||
.contextualSpacing(false);
|
||||
item4
|
||||
.setNumbering(concrete, 0)
|
||||
.spacing({ before: 200 })
|
||||
.contextualSpacing(false);
|
||||
|
||||
doc.addParagraph(item1);
|
||||
doc.addParagraph(item2);
|
||||
@ -29,4 +41,4 @@ const packer = new Packer();
|
||||
|
||||
packer.toBuffer(doc).then((buffer) => {
|
||||
fs.writeFileSync("My Document.docx", buffer);
|
||||
});
|
||||
});
|
||||
|
@ -1,11 +1,12 @@
|
||||
// Simple example to add text to a document
|
||||
// Import from 'docx' rather than '../build' if you install from npm
|
||||
import * as fs from "fs";
|
||||
import { Document, Packer, Paragraph, TextRun } from "../build";
|
||||
import { Document, Packer, Paragraph } from "../build";
|
||||
|
||||
const doc = new Document();
|
||||
const paragraph = new Paragraph();
|
||||
const link = doc.createHyperlink("http://www.example.com", "Hyperlink");
|
||||
|
||||
var doc = new Document();
|
||||
var paragraph = new Paragraph();
|
||||
var link = doc.createHyperlink('http://www.example.com', 'Hyperlink');
|
||||
link.bold();
|
||||
paragraph.addHyperLink(link);
|
||||
doc.addParagraph(paragraph);
|
||||
|
Reference in New Issue
Block a user