Package Exports
- sharkdown
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (sharkdown) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
sharkdown

usage
npm install --save sharkdownOr as a handy utility:
npm install sharkdown -gAnd then you can do:
sharkdown file.md
sharkdown < "markdown data"api
sharkdown(str)
Takes a string, returns a string with markdown encoded as control codes for a shell.
sharkdown()
Returns a through-stream for pipes.
example
var sharkdown = require('sharkdown');
process.stdin
.pipe(sharkdown())
.pipe(process.stdout);