cnpmjs.org
Version:
Private npm registry and web for Enterprise, base on MySQL and Simple Store Service
27 lines (21 loc) • 401 B
JavaScript
/**!
* cnpmjs.org - common/markdown.js
*
* Copyright(c) fengmk2 and other contributors.
* MIT Licensed
*
* Authors:
* fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com)
*/
;
/**
* Module dependencies.
*/
var Remarkable = require('remarkable');
var md = new Remarkable();
md.set({
html: true
});
exports.render = function (content) {
return md.render(content);
};