Commit ddb1d0c6 by bergquist

fix(table): escape / chars as well

parent 7d89cf22
......@@ -149,7 +149,8 @@ export class TableRenderer {
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
'\'': '&#039;'
'\'': '&#039;',
'/': '&#x2F;'
})[m];
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment