Skip to content
Snippets Groups Projects
Unverified Commit eb474f5e authored by Sebastian Höffner's avatar Sebastian Höffner
Browse files

Escaping &, <, > properly. Resolves #1.

parent de84cf01
No related branches found
No related tags found
No related merge requests found
......@@ -2,13 +2,14 @@
<html>
<head>
<title>OpenCCG Webinterface</title>
<!-- Script and style adapted from https://stackoverflow.com/a/7220510,
<!-- Script and style adapted from https://stackoverflow.com/a/7220510
written by user123444555621 -->
<script>
function syntaxHighlight(json) {
if (typeof json != 'string') {
json = JSON.stringify(json, undefined, 2);
}
json = json.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
return json.replace(/("(\\u[a-zA-Z0-9]{4}|\\[^u]|[^\\"])*"(\s*:)?|\b(true|false|null)\b|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)/g, function (match) {
var cls = 'number';
if (/^"/.test(match)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment