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

Run Pandoc from NodeJS. Pandoc installation is required.

Results 7 node-pandoc issues
Sort by recently updated
recently updated
newest added

see [stack overflow question](https://stackoverflow.com/questions/74878979/assign-returned-value-to-variable-using-pandoc-node-in-nodejs) But i want to be able assign the return result to a variable then send that to the front end. But the variable comes up as...

hi, thanks for the module. **Situation** - Using a docx with images. - Using "--extract-media=", "." in the args array to extract the images in the docx document **Error thrown:**...

Hello thank you for this plugin! I want to add content in a loop to output pandoc file. With following args `'-f markdown -t html >> ./test.html';` I get` Error:...

Hi, thank you for building this great module! It runs just fine through `electron`, but after I package the app with `electron-builder` or `electron-packager`, trying to use Pandoc in the...

```javascript 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'" ```

I get some uncaught errors like: `Uncaught Error: write EPIPE` `Uncaught Error: spawn pandoc ENOENT` But it is impossible to catch inside the nodePandoc callback (or outside). I want to...

Hi, I'm currently running pandoc manually through command line to create a pdf from a multitude of .md files. To automate the process, I was hoping I could use this...