fix(compiler-core): should not condense whitespace in RAWTEXT mode
This commit is contained in:
parent
f8e7fadaae
commit
4b739e3bc0
@ -215,7 +215,10 @@ function parseChildren(
|
||||
// Whitespace management for more efficient output
|
||||
// (same as v2 whitespance: 'condense')
|
||||
let removedWhitespace = false
|
||||
if (!parent || !context.options.isPreTag(parent.tag)) {
|
||||
if (
|
||||
mode !== TextModes.RAWTEXT &&
|
||||
(!parent || !context.options.isPreTag(parent.tag))
|
||||
) {
|
||||
for (let i = 0; i < nodes.length; i++) {
|
||||
const node = nodes[i]
|
||||
if (node.type === NodeTypes.TEXT) {
|
||||
|
Loading…
Reference in New Issue
Block a user