Fold line breaks in HTML template blocks

This commit is contained in:
Tangent Wantwight 2023-11-20 23:00:10 -05:00
parent fa11099850
commit 68fd85507d
1 changed files with 3 additions and 0 deletions

View File

@ -58,6 +58,9 @@ export const TemplateBlock = Sequence(
AtLeast(
0,
Choose<InterpolatedPiece>(
Regex(/\\\n\s*/y)
.map(() => ({ text: " " }))
.expects("BACKSLASH"),
BackslashEscape,
Bracket,
Regex(/[^\\\[]+/y)