learnlytics-go/templ/generator/test-a-href/template.templ

8 lines
263 B
Plaintext
Raw Normal View History

2025-03-20 12:35:13 +01:00
package testahref
templ render() {
<a href="javascript:alert('unaffected');">Ignored</a>
<a href={ templ.URL("javascript:alert('should be sanitized')") }>Sanitized</a>
<a href={ templ.SafeURL("javascript:alert('should not be sanitized')") }>Unsanitized</a>
}