Skip to content

Commit aabcef4

Browse files
committed
build: version 0.6.3
Version 0.6.3
1 parent bdf0001 commit aabcef4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

examples/make_docx.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ pObj.addText('Align this text to the right.')
6666

6767
pObj = docx.createP()
6868

69-
pObj.addText('Those two lines are in the same paragraph,\nbut they are separated by a line break.')
69+
pObj.addText(
70+
'Those two lines are in the same paragraph,\nbut they are separated by a line break.'
71+
)
7072

7173
docx.putPageBreak()
7274

examples/word/basic_docx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ docx.on('error', function(err) {
2121
console.log(err)
2222
})
2323

24-
pObj = docx.createP()
24+
var pObj = docx.createP()
2525
pObj.setStyle('Heading1')
2626
pObj.addText('Header!')
2727

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "officegen",
33
"description": "Office Open XML Generator using Node.js streams. Supporting Microsoft Office 2007 and later Word (docx), PowerPoint (pptx,ppsx) and Excell (xlsx). This module is for all frameworks and environments. No need for any commandline tool - this module is doing everything inside it.",
4-
"version": "0.6.2",
4+
"version": "0.6.3",
55
"author": {
66
"name": "Ziv Barber",
77
"url": "https://github.com/Ziv-Barber"

0 commit comments

Comments
 (0)