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