Fix wpscan.org

This commit is contained in:
Christian Mehlmauer
2014-07-11 16:44:07 +02:00
parent 22415dd18b
commit 6b41a48094

View File

@@ -60,7 +60,7 @@
<script>
<!-- Get README.md from Github API using JSONP. Turn the markdown into HTML. -->
function content(response) {
var data = atob(response.data.content);
var data = atob(response.data.content.replace(/\s/g, ''));
preview.innerHTML = markdown.toHTML(data);
return data;
}