I\'m building go web application. I found some anomaly on the rendered html page. All of my html comments are suddenly not being rendered. My gue
You can use text/template instead of html/template and do all escaping manually using built-in functions such as html and js (https://golang.org/pkg/text/template/#hdr-Functions). Be aware that this is very error prone though.
text/template
html/template
html
js