node-pandoc icon indicating copy to clipboard operation
node-pandoc copied to clipboard

Windows Paths with spaces break

Open smks opened this issue 6 years ago • 0 comments

args
"-o c:\Users\Shaun Stone\Desktop\automating-with-nodejs\build\docx\automating-with-nodejs.docx --extract-media 'c:\Users\Shaun Stone\Desktop\automating-with-nodejs\chapters\images'"

//node-pandoc/index.js

  if (args.constructor === String) {
    args = args.split(' ');
  }

__proto__:Array(0) [, …]
0:"-o"
1:"c:\Users\Shaun"
2:"Stone\Desktop\automating-with-nodejs\build\docx\automating-with-nodejs.docx"
3:"--extract-media"
4:"'c:\Users\Shaun"
5:"Stone\Desktop\automating-with-nodejs\chapters\images'"

smks avatar Mar 31 '18 11:03 smks