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 guess it's because the go version I used (just updated to higher version), because it was fine before I updated it.
This is my code:
<!-- prepare the breadcrumbs -->
<ul class="breadcrumb" data-bind="foreach: viewModel.breadcrumbs">
<!-- ko if: ($index() + 1) < len(viewModel.breadcrumbs()) -->
<li>
<a data-bind="attr: { href: href }">
<i class="fa fa-home"></i>
<span data-bind="text: title"></span>
</a>
</li>
<!-- /ko -->
<!-- ko if: ($index() + 1) == len(viewModel.breadcrumbs()) -->
<li class="active" data-bind="text: title"></li>
<!-- /ko -->
</ul>
And this is the rendered page source:
Because of this issue, many of my KnockoutJS codes which are written using containerless control flow syntax goes crazy, it doesn't work at all.
What should I do to solve this? Thanks in advance
You can use
text/template
instead ofhtml/template
and do all escaping manually using built-in functions such ashtml
andjs
(https://golang.org/pkg/text/template/#hdr-Functions). Be aware that this is very error prone though.There is a special type in the
html/template
package:template.HTML
. Values of this type in the template are not escaped when the template is rendered.So you may "mark" your HTML comments as
template.HTML
and so they will not be escaped or omitted during executing your template.One way to do this is to register a custom function for your template, a function which can be called from your template which takes a
string
argument and returns it astemplate.HTML
. You can "pass" all the HTML comments to this function, and as a result, your HTML comments will be retained in the output.See this example:
Output (try it on the Go Playground):
So basically after registering our
safe()
function, transform all your HTML comments to a template action calling thissafe()
function and passing your original HTML comment.Convert this:
To this:
Or alternatively (whichever you like):
And you're good to go.
Note: If your HTML comment contains quotation marks (
'"'
), you can / have to escape it like this:Note #2: Be aware that you shouldn't use conditional HTML comments as that may break the context sensitive escaping of
html/template
package. For details read this.