markdox
Version:
Markdox is a documentation generator based on Dox and Markdown with support for JavaScript, CoffeeScript and IcedCoffeeScript.
34 lines (29 loc) • 446 B
JavaScript
/**
* # The small parser
*
* This is a small parser.
*
* var parser = require('small-parser')
*/
/*!
* Library version.
*
* @type {String}
* @api public
*/
exports.version = '0.0.1';
/**
* Parse the given `str`.
*
* Examples:
*
* parse(str)
* // => "wahoo"
*
* @param {String|Buffer} str String to parse
* @return {String} Persed string
* @api public
*/
exports.parse = function(str) {
return "wahoo";
}