Skip to content

Commit b993886

Browse files
author
ltischuk
committed
Remove sanitization of valid XML characters: ( ) #
1 parent 165c5c1 commit b993886

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

lib/sanitize.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,13 @@
55
* character | escaped
66
* < &lt;
77
* > &gt;
8-
* ( &#40;
9-
* ) &#41;
10-
* # &#35;
118
* & &amp;
129
* " &quot;
1310
* ' &apos;
1411
*/
1512
var chars = {
1613
'<': '&lt;'
1714
, '>': '&gt;'
18-
, '(': '&#40;'
19-
, ')': '&#41;'
20-
, '#': '&#35;'
2115
, '&': '&amp;'
2216
, '"': '&quot;'
2317
, "'": '&apos;'

0 commit comments

Comments
 (0)