Remove trim() function call in parse-pure

This commit is contained in:
kwaroran
2024-04-03 19:17:39 +09:00
parent 2ad8d0e105
commit 9d90901223

View File

@@ -924,7 +924,7 @@ function blockEndMatcher(p1:string,type:blockMatch,matcherArg:matcherArg):string
return p1.trim()
}
if(type === 'parse-pure'){
return p1.trim()
return p1
}
return ''
}