fix(table): escape / chars as well

This commit is contained in:
bergquist 2016-02-09 10:57:32 +01:00
parent 7d89cf228c
commit ddb1d0c684

View File

@ -149,7 +149,8 @@ export class TableRenderer {
'<': '&lt;',
'>': '&gt;',
'"': '&quot;',
'\'': '&#039;'
'\'': '&#039;',
'/': '&#x2F;'
})[m];
});
}