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