diff --git a/packages/core/src/utils/html-parser.ts b/packages/core/src/utils/html-parser.ts
index d14f229ba..a64ca5e90 100644
--- a/packages/core/src/utils/html-parser.ts
+++ b/packages/core/src/utils/html-parser.ts
@@ -199,7 +199,8 @@ export function extractMatchingBlocks(html: string, matchTagName: string) {
}
},
{
- lowerCaseTags: false
+ lowerCaseTags: false,
+ decodeEntities: false
}
);
parser.end(html);