blob: 06125a52693225e8bd463cbf910278ed26f7abcc [file] [log] [blame]
/*!
* Module dependencies.
*/
var dir = require('node-dir');
/**
* Doclet compiler.
*
* Compiles the documentation.
*
* @param {String} path is the documentation path.
*/
module.exports.compile = function(path) {
// default to current working directory
path = path || process.cwd();
// each file
dir.paths(path, function(e, paths) {
// parse markdown
// render html
});
};