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

16 lines
289 B
Plaintext
Raw Normal View History

2025-03-20 12:35:13 +01:00
-- in --
package test
templ input(value, validation string) {
<div>
<p>{ "the" }<a href="http://example.com">{ "data" }</a></p></div>
}
-- out --
package test
templ input(value, validation string) {
<div>
<p>{ "the" }<a href="http://example.com">{ "data" }</a></p>
</div>
}