UNPKG

cnpmjs.org

Version:

Private npm registry and web for Enterprise, base on MySQL and Simple Store Service

28 lines (22 loc) 441 B
/**! * cnpmjs.org - common/markdown.js * * Copyright(c) fengmk2 and other contributors. * MIT Licensed * * Authors: * fengmk2 <fengmk2@gmail.com> (http://fengmk2.github.com) */ 'use strict'; /** * Module dependencies. */ var xss = require('xss'); var MarkdownIt = require('markdown-it'); var md = new MarkdownIt({ html: true, linkify: true, }); exports.render = function (content) { return md.render(xss(content)); };