learnlytics-go/templ/parser/v2/formattestdata/comments_are_preserved.txt
2025-03-20 12:35:13 +01:00

25 lines
431 B
Plaintext

-- in --
package main
templ test() {
<!-- This is a comment -->
// This is not included in the output.
<div>Some standard templ</div>
/* This is not included in the output too. */
/*
Leave this alone.
*/
}
-- out --
package main
templ test() {
<!-- This is a comment -->
// This is not included in the output.
<div>Some standard templ</div>
/* This is not included in the output too. */
/*
Leave this alone.
*/
}