问题
今天在修改mindoc的时候传值到模板中
<img src="{{.imageUrl}}">
结果输出:
<img src="#ZgotmplZ">
官方文档中说
“ZgotmplZ” is a special value that indicates that unsafe content reached a CSS or URL context at runtime. The output of the example will be <img src="#ZgotmplZ">
所以解决方案就是明确指定这种类型
比如上例子中, 明确这是一个url
c.Data["imageUrl"] = template.URL(data)
这样显示就正确了
现在需要注意的有