learnlytics-go/templ/parser/v2/formattestdata/templelement_multiline_block_indentation.txt

23 lines
163 B
Plaintext
Raw Permalink Normal View History

2025-03-20 12:35:13 +01:00
-- in --
package p
templ f() {
@Other(
p.Test,
"s",
){
<p>hello</p>
}
}
-- out --
package p
templ f() {
@Other(
p.Test,
"s",
) {
<p>hello</p>
}
}