showdown-xss-filter

0.2.0 • Public • Published

showdown-xss-filter

Showdown extension to filter XSS, using leizongmin/js-xss.

npm version

Client-side

<script src="/path/to/showdown/src/showdown.js"></script>
<script src="/path/to/xss/dist/xss.min.js"></script>
<script src="/path/to/showdown-xss-filter.js"></script>
var converter = new showdown.Converter({ extensions: ['xssfilter'] })
var text = "<script>alert('xss!')</script>";
console.log(converter.makeHtml(text));

Note: be sure to include the dependency on leizongmin/js-xss before this extension.

Server-side (node)

var showdown = require('showdown');
var xssFilter = require('showdown-xss-filter');
var converter = new showdown.Converter({extensions: [xssFilter]});
 
var text = "<script>alert('xss!')</script>";
console.log(converter.makeHtml(text));

Dependents (5)

Package Sidebar

Install

npm i showdown-xss-filter

Weekly Downloads

28,550

Version

0.2.0

License

MIT

Last publish

Collaborators

  • visionistinc