learnlytics-go/templ/generator/test-attribute-escaping/template.templ

15 lines
221 B
Plaintext
Raw Normal View History

2025-03-20 12:35:13 +01:00
package testhtml
templ BasicTemplate(url string) {
<div>
<a href={ templ.URL(url) }>text</a>
</div>
<div>
<button
hx-post="/click"
hx-trigger="click"
hx-vals='{"val":"Value"}'
>Click</button>
</div>
}