Skip to content

Commit dccd182

Browse files
mengjian-githubyyx990803
authored andcommitted
fix: allow codebase to be inlined directly in HTML (#7314)
escape - to avoid regex being parsed as HTML comment when entire codebase is inlined. fix #7298
1 parent 44420b7 commit dccd182

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/compiler/parser/html-parser.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ const startTagOpen = new RegExp(`^<${qnameCapture}`)
2222
const startTagClose = /^\s*(\/?)>/
2323
const endTag = new RegExp(`^<\\/${qnameCapture}[^>]*>`)
2424
const doctype = /^<!DOCTYPE [^>]+>/i
25-
const comment = /^<!--/
25+
// #7298: escape - to avoid being pased as HTML comment when inlined in page
26+
const comment = /^<!\--/
2627
const conditionalComment = /^<!\[/
2728

2829
let IS_REGEX_CAPTURING_BROKEN = false
@@ -152,7 +153,7 @@ export function parseHTML (html, options) {
152153
endTagLength = endTag.length
153154
if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') {
154155
text = text
155-
.replace(/<!--([\s\S]*?)-->/g, '$1')
156+
.replace(/<!\--([\s\S]*?)-->/g, '$1') // #7298
156157
.replace(/<!\[CDATA\[([\s\S]*?)]]>/g, '$1')
157158
}
158159
if (shouldIgnoreFirstNewline(stackedTag, text)) {

0 commit comments

Comments
 (0)