Skip to content

Commit c2802b0

Browse files
committed
fix(safeHtml): allow label tag
1 parent c2324a6 commit c2802b0

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "html5parser",
33
"description": "A super fast & tiny HTML5 parser",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"author": "acrazing <[email protected]>",
66
"keywords": [
77
"html5",

src/safeHtml.ts

+4-12
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const safeHtmlDefaultOptions: SafeHtmlOptions = {
5858
'img',
5959
'ins',
6060
'kbd',
61+
'label',
6162
'li',
6263
'main',
6364
'map',
@@ -104,10 +105,7 @@ export const safeHtmlDefaultOptions: SafeHtmlOptions = {
104105
allowedUrl: /^(?:mailto|tel|https?|ftp|[^:]*[^a-z0-9.+-][^:]*):|^[^:]*$/i,
105106
};
106107

107-
export function safeHtml(
108-
input: string,
109-
options: Partial<SafeHtmlOptions> = {},
110-
): string {
108+
export function safeHtml(input: string, options: Partial<SafeHtmlOptions> = {}): string {
111109
const config: SafeHtmlOptions = {
112110
...safeHtmlDefaultOptions,
113111
...options,
@@ -120,11 +118,7 @@ export function safeHtml(
120118
return stringify(ast, config, input);
121119
}
122120

123-
function stringify(
124-
ast: INode[],
125-
config: SafeHtmlOptions,
126-
input: string,
127-
): string {
121+
function stringify(ast: INode[], config: SafeHtmlOptions, input: string): string {
128122
return ast
129123
.map((node) => {
130124
if (node.type === SyntaxKind.Text) {
@@ -135,9 +129,7 @@ function stringify(
135129
}
136130
if (selfCloseTags[node.name]) {
137131
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`);
141133
}
142134
} else {
143135
if (!node.body || !node.close) {

0 commit comments

Comments
 (0)