I want to render templete like this, but I can't find relative code from website.
page.tmpl
<html>
<body>
{{.a}}
</body>
<html>
router code piece
aEle = `<a>I 'm tagA</a>`
r.GET("/page", func(c *gin.Context) {
c.HTML(200, "page.tmpl", gin.H{"a":aEle,}})
})
result like this
page
<html>
<body>
<a>I'‘m tagA</a>
</body>
<html>