canebat

Results 3 issues of canebat

Showdown has an XSS bug: https://github.com/showdownjs/showdown/issues/57 Will including `angular-sanitize` as you have it in the README help prevent this?

The [official Node docs](https://nodejs.org/api/domain.html) say we should shutdown the process after receiving an error with `domains`: ``` var server = require('http').createServer(function(req, res) { var d = domain.create(); d.on('error', function(er) {...

I have a large block of static markdown text that later gets parsed by my javascript. ie, `````` **Test** blah blah blah --- ``` // This is how to print...