Skip to content

Pandoc Node.js wrapper that makes it seamlessly available as a local dependency on OS X, Linux, and Windows. http://johnmacfarlane.net/pandoc/

Notifications You must be signed in to change notification settings

hollowdrutt/pandoc-bin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pandoc-bin Build Status

Pandoc 1.12.4.2 Node.js wrapper that makes it seamlessly available as a local dependency on OS X, Linux, and Windows.

If you need to convert files from one markup format into another, pandoc is your swiss-army knife.

Install

$ npm install --save pandoc-bin

Usage

var execFile = require('child_process').execFile;
var optipng = require('pandoc-bin').path;

execFile(optipng, ['-v'], function (err, stdout, stderr) {
    console.log('Pandoc version:', stdout.match(/\d+\.\d+\.\d+(\.\d+)?/)[0]);
});

CLI

$ npm install --global pandoc-bin
$ pandoc --help

License

Everything excluding the binaries licensed under the MIT license.

Pandoc is licensed under the GPL v2 and copyright John MacFarlane and the Contributing Authors.

About

Pandoc Node.js wrapper that makes it seamlessly available as a local dependency on OS X, Linux, and Windows. http://johnmacfarlane.net/pandoc/

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%