@@ -59,6 +59,10 @@ const decodingMap = {
59
59
const encodedAttr = / & (?: l t | g t | q u o t | a m p ) ; / g
60
60
const encodedAttrWithNewLines = / & (?: l t | g t | q u o t | a m p | # 1 0 ) ; / g
61
61
62
+ // #5992
63
+ const isIgnoreNewlineTag = makeMap ( 'pre,textarea' , true )
64
+ const shouldIgnoreFirstNewline = ( tag , html ) => tag && isIgnoreNewlineTag ( tag ) && html [ 0 ] === '\n'
65
+
62
66
function decodeAttr ( value , shouldDecodeNewlines ) {
63
67
const re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr
64
68
return value . replace ( re , match => decodingMap [ match ] )
@@ -75,6 +79,9 @@ export function parseHTML (html, options) {
75
79
last = html
76
80
// Make sure we're not in a plaintext content element like script/style
77
81
if ( ! lastTag || ! isPlainTextElement ( lastTag ) ) {
82
+ if ( shouldIgnoreFirstNewline ( lastTag , html ) ) {
83
+ advance ( 1 )
84
+ }
78
85
let textEnd = html . indexOf ( '<' )
79
86
if ( textEnd === 0 ) {
80
87
// Comment:
@@ -152,16 +159,19 @@ export function parseHTML (html, options) {
152
159
options . chars ( text )
153
160
}
154
161
} else {
155
- var stackedTag = lastTag . toLowerCase ( )
156
- var reStackedTag = reCache [ stackedTag ] || ( reCache [ stackedTag ] = new RegExp ( '([\\s\\S]*?)(</' + stackedTag + '[^>]*>)' , 'i' ) )
157
- var endTagLength = 0
158
- var rest = html . replace ( reStackedTag , function ( all , text , endTag ) {
162
+ let endTagLength = 0
163
+ const stackedTag = lastTag . toLowerCase ( )
164
+ const reStackedTag = reCache [ stackedTag ] || ( reCache [ stackedTag ] = new RegExp ( '([\\s\\S]*?)(</' + stackedTag + '[^>]*>)' , 'i' ) )
165
+ const rest = html . replace ( reStackedTag , function ( all , text , endTag ) {
159
166
endTagLength = endTag . length
160
167
if ( ! isPlainTextElement ( stackedTag ) && stackedTag !== 'noscript' ) {
161
168
text = text
162
169
. replace ( / < ! - - ( [ \s \S ] * ?) - - > / g, '$1' )
163
170
. replace ( / < ! \[ C D A T A \[ ( [ \s \S ] * ?) ] ] > / g, '$1' )
164
171
}
172
+ if ( shouldIgnoreFirstNewline ( stackedTag , text ) ) {
173
+ text = text . slice ( 1 )
174
+ }
165
175
if ( options . chars ) {
166
176
options . chars ( text )
167
177
}
0 commit comments