fix(table): escape / chars as well

This commit is contained in:
bergquist
2016-02-09 11:14:08 +01:00
parent 7d89cf228c
commit ddb1d0c684
+2 -1
View File
@@ -149,7 +149,8 @@ export class TableRenderer {
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
'\'': '&#039;'
'\'': '&#039;',
'/': '&#x2F;'
})[m];
});
}