Last active
June 14, 2017 15:11
-
-
Save Naatan/9534778 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var tmp = require('tmp'); | |
var fs = require('fs'); | |
var exec = require("child_process").exec; | |
tmp.file({postfix: ".md"}, function(err, path, fd) { | |
fs.writeFile(path, "* One\n* Two", function(err) { | |
if(err) return; | |
exec('github-markup ' + path, function (err, stdout, stderr) { | |
console.log(stdout); | |
console.log(path); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment