1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Updated about

This commit is contained in:
Zack
2016-02-07 14:00:54 -05:00
parent 26ad3b91f0
commit 94c0541cd0
2 changed files with 2 additions and 1 deletions

View File

@ -74,6 +74,7 @@ func renderMarkdown(c *gin.Context, title string) {
html2 = strings.Replace(html2, s, "<span class='texi' data-expr='"+s[1:len(s)-1]+"'></span>", 1)
}
html2 = strings.Replace(html2, "&amp;#36;", "&#36;", -1)
c.HTML(http.StatusOK, "view.tmpl", gin.H{
"Title": title,
"Body": template.HTML([]byte(html2)),