Package Exports
- multimarkdown
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 (multimarkdown) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-multimarkdown - Native MultiMarkdown parser for Node.js
A wrapper for Fletcher Penney's peg-multimarkdown.
Install using npm:
npm install multimarkdown
API
convert(text)
Converts the given Markdown text into HTML and returns it as a string.
Example usage
var MultiMarkdown = require("multimarkdown");
var html = MultiMarkdown.convert(markdownString);