Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 454 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 454 Bytes

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);