We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdd7dbd commit 74169cdCopy full SHA for 74169cd
test/test.js
@@ -222,4 +222,11 @@ describe('PostHTML-Parser test', function () {
222
{tag: 'style', content: [' /* width < 800px */ @media (max-width: 800px) { /* selectors */} ']}
223
]);
224
});
225
+
226
+ it('should be parse script contents are split with "<" in comment', function () {
227
+ const html = `<script> var str = 'hey <form'; if (!str.match(new RegExp('<(form|iframe)', 'g'))) { /* ... */ }</script>`
228
+ expect(parser(html)).to.eql([
229
+ {tag: 'script', content: [' var str = \'hey <form\'; if (!str.match(new RegExp(\'<(form|iframe)\', \'g\'))) { /* ... */ }']}
230
+ ]);
231
+ });
232
0 commit comments