core: skip decodine entities when parsing html

This commit is contained in:
Ammar Ahmed
2025-06-04 12:17:49 +05:00
committed by Abdullah Atta
parent 83735705d2
commit 918824f26b

View File

@@ -199,7 +199,8 @@ export function extractMatchingBlocks(html: string, matchTagName: string) {
}
},
{
lowerCaseTags: false
lowerCaseTags: false,
decodeEntities: false
}
);
parser.end(html);