markdox
Version:
Markdox is a documentation generator based on Dox and Markdown with support for JavaScript, CoffeeScript and IcedCoffeeScript.
30 lines (14 loc) • 368 B
Markdown
<!-- Start examples/fixtures/small-parser.js -->
# The small parser
This is a small parser.
var parser = require('small-parser')
## parse(str)
Parse the given `str`.
Examples:
parse(str)
// => "wahoo"
### Params:
* **String|Buffer** *str* String to parse
### Return:
* **String** Persed string
<!-- End examples/fixtures/small-parser.js -->