16 lines
289 B
Plaintext
16 lines
289 B
Plaintext
-- 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>
|
|
}
|