11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
package testcomment
|
|
|
|
templ render(content string) {
|
|
// This is not rendered.
|
|
<p>{ content }</p>
|
|
/*
|
|
This is also not rendered.
|
|
*/
|
|
/* Neither is this */
|
|
}
|