File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)
22
22
const startTagClose = / ^ \s * ( \/ ? ) > /
23
23
const endTag = new RegExp ( `^<\\/${ qnameCapture } [^>]*>` )
24
24
const doctype = / ^ < ! D O C T Y P E [ ^ > ] + > / i
25
- const comment = / ^ < ! - - /
25
+ // #7298: escape - to avoid being pased as HTML comment when inlined in page
26
+ const comment = / ^ < ! \- - /
26
27
const conditionalComment = / ^ < ! \[ /
27
28
28
29
let IS_REGEX_CAPTURING_BROKEN = false
@@ -152,7 +153,7 @@ export function parseHTML (html, options) {
152
153
endTagLength = endTag . length
153
154
if ( ! isPlainTextElement ( stackedTag ) && stackedTag !== 'noscript' ) {
154
155
text = text
155
- . replace ( / < ! - - ( [ \s \S ] * ?) - - > / g, '$1' )
156
+ . replace ( / < ! \ -- ( [ \s \S ] * ?) - - > / g, '$1' ) // #7298
156
157
. replace ( / < ! \[ C D A T A \[ ( [ \s \S ] * ?) ] ] > / g, '$1' )
157
158
}
158
159
if ( shouldIgnoreFirstNewline ( stackedTag , text ) ) {
You can’t perform that action at this time.
0 commit comments