(value)
| 210 | const lines = [] |
| 211 | |
| 212 | function appendText(value) { |
| 213 | if (!value) { |
| 214 | return |
| 215 | } |
| 216 | lines.push(` __append(${JSON.stringify(value)})`) |
| 217 | } |
| 218 | |
| 219 | for (const match of template.matchAll(regex)) { |
| 220 | let text = template.slice(cursor, match.index) |