From b6cec61e160e4f30ec1b91a6193140a5d6ed7f88 Mon Sep 17 00:00:00 2001 From: Saya Date: Thu, 2 Jun 2022 14:40:27 +0800 Subject: [PATCH] chore(preset-tagify): update excludedTags comment (#1051) --- packages/preset-tagify/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/preset-tagify/src/types.ts b/packages/preset-tagify/src/types.ts index cccb51fca0..775a68995c 100644 --- a/packages/preset-tagify/src/types.ts +++ b/packages/preset-tagify/src/types.ts @@ -6,7 +6,7 @@ export interface TagifyOptions { /** * Tags excluded from processing. - * @default ['b', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'table'] + * @default ['b', /^h\d+$/, 'table'] */ excludedTags?: (string | RegExp)[]