Skip to content

Commit 34e66e8

Browse files
committed
add \n
1 parent f0d9ecb commit 34e66e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bin/notebookgen

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var notebookgen = require('../notebookgen.js');
44
var program = require('commander');
55

66
program
7-
.version('1.4.0')
7+
.version('1.4.1')
88
.usage('<soruce_dir> [options]')
99
.description('Auto generate notebooks from your source code')
1010
.option('-a --author [name]', 'author\'s name to be added in the notebook')

notebookgen.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module.exports = function (_path, output, author, initials, FontSize, columns, p
9292
.replace(`\${paper}`, paper)
9393

9494
template += walk(_path, 0)
95-
template += '\\end{multicols}'
95+
template += '\\end{multicols}\n'
9696
template += '\\end{document}'
9797
output = output || './notebook.pdf'
9898
pdflatex(template).pipe(fs.createWriteStream(output))

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "notebook-generator",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "Notebook generator for programming contest. (or \"something useful to share your code in pdf\")",
55
"main": "notebookgen.js",
66
"scripts": {

0 commit comments

Comments
 (0)