Go - HTML comments are not rendered

前端 未结 2 1343
孤街浪徒
孤街浪徒 2020-12-21 05:15

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

2条回答
  •  無奈伤痛
    2020-12-21 05:59

    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.

提交回复
热议问题