@@ -58,6 +58,7 @@ export const safeHtmlDefaultOptions: SafeHtmlOptions = {
58
58
'img' ,
59
59
'ins' ,
60
60
'kbd' ,
61
+ 'label' ,
61
62
'li' ,
62
63
'main' ,
63
64
'map' ,
@@ -104,10 +105,7 @@ export const safeHtmlDefaultOptions: SafeHtmlOptions = {
104
105
allowedUrl : / ^ (?: m a i l t o | t e l | h t t p s ? | f t p | [ ^ : ] * [ ^ a - z 0 - 9 . + - ] [ ^ : ] * ) : | ^ [ ^ : ] * $ / i,
105
106
} ;
106
107
107
- export function safeHtml (
108
- input : string ,
109
- options : Partial < SafeHtmlOptions > = { } ,
110
- ) : string {
108
+ export function safeHtml ( input : string , options : Partial < SafeHtmlOptions > = { } ) : string {
111
109
const config : SafeHtmlOptions = {
112
110
...safeHtmlDefaultOptions ,
113
111
...options ,
@@ -120,11 +118,7 @@ export function safeHtml(
120
118
return stringify ( ast , config , input ) ;
121
119
}
122
120
123
- function stringify (
124
- ast : INode [ ] ,
125
- config : SafeHtmlOptions ,
126
- input : string ,
127
- ) : string {
121
+ function stringify ( ast : INode [ ] , config : SafeHtmlOptions , input : string ) : string {
128
122
return ast
129
123
. map ( ( node ) => {
130
124
if ( node . type === SyntaxKind . Text ) {
@@ -135,9 +129,7 @@ function stringify(
135
129
}
136
130
if ( selfCloseTags [ node . name ] ) {
137
131
if ( node . body !== void 0 ) {
138
- throw new Error (
139
- `self closed tag "${ node . name } " should not have body` ,
140
- ) ;
132
+ throw new Error ( `self closed tag "${ node . name } " should not have body` ) ;
141
133
}
142
134
} else {
143
135
if ( ! node . body || ! node . close ) {
0 commit comments