learnlytics-go/templ/generator/test-html-comment/template.templ
2025-03-20 12:35:13 +01:00

23 lines
436 B
Plaintext

package testcomment
templ render(content string) {
<!-- simple html comment -->
@paragraph(content)
<!--
multiline
comment
-->
@paragraph("second paragraph")
<!--
@paragraph("commented out composed element")
-->
@paragraph("third paragraph")
<!-- commented out string expression: { content } -->
<span>{ content }</span>
<!-- <div>comment with html</div> -->
}
templ paragraph(content string) {
<p>{ content }</p>
}