Created
March 10, 2014 13:08
-
-
Save touv/9464672 to your computer and use it in GitHub Desktop.
Render Markdown files as templates
This file contains 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
'use strict'; | |
var fs = require('fs') | |
, marked = require('marked') | |
; | |
module.exports = function (options) { | |
if (!options) { | |
options = {}; | |
} | |
marked.setOptions(options); | |
if (typeof options.render != 'function') { | |
options.render = function (template, data) { | |
return template; | |
} | |
} | |
return function (path, locals, cb) { | |
if (cb) { | |
fs.readFile(path, {encoding: 'utf8', flag: 'r'}, function (err, input) { | |
if (err) { | |
return cb(err); | |
} | |
marked(input, function (err, output) { | |
if (err) { | |
return cb(err); | |
} | |
cb(null, options.render(output, locals)); | |
} | |
); | |
} | |
); | |
} | |
else { | |
return options.render(marked(fs.readFileSync(path, {encoding: 'utf8', flag: 'r'})), locals); | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment