Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 418 Bytes

Readme.md

File metadata and controls

16 lines (9 loc) · 418 Bytes

SnuOwnd markdown parser

SnuOwnd is an exact as possible JavaScript port of Reddit's Snudown markdown parser.

Use

SnuOwnd can either be used in a browser as a drop in library, or used with node.js by var SnuOwnd = require('snuownd');

Use is simple as:

var markdown = "...";
var html = SnuOwnd.getParser().render(markdown);