gpt4 book ai didi

go - 在 Go 中将未转义的 HTML 解析为 HTML 模板

转载 作者:IT王子 更新时间:2023-10-29 01:01:38 27 4
gpt4 key购买 nike

我创建了这个非常简单的测试程序。

package main

import (
"fmt"
"github.com/microcosm-cc/bluemonday"
"github.com/pressly/chi"
"github.com/russross/blackfriday"
"github.com/unrolled/render"
"net/http"
)

func main() {
r := chi.NewRouter()
r.Get("/", homepageGET)
http.ListenAndServe(":8080", r)
}

func homepageGET(w http.ResponseWriter, r *http.Request) {
Renderer := render.New(render.Options{
Directory: "frontend",
Extensions: []string{".tmpl", ".html"},
UnEscapeHTML: true,
})
unsafe := blackfriday.MarkdownCommon([]byte("**bolded text**"))
markdownContent := bluemonday.UGCPolicy().SanitizeBytes(unsafe)
fmt.Print(string(markdownContent))
Renderer.HTML(w, http.StatusOK, "index", map[string]interface{}{
"content": fmt.Sprintf(string(markdownContent))})
}

然后我有一个 HTML 文件,除此之外什么都没有:

<body>
{{ .content }}
</body>

fmt.Print 命令打印“<p><strong>bolded text</strong></p>”,而它作为“&lt;p&gt;&lt;strong&gt;bolded text&lt;/strong&gt;&lt;/p&gt;”插入到 HTML 页面中。

我相信它与转义的 HTML 有关,但对于展开/渲染包,我将其配置为未转义。我非常感谢任何帮助让测试程序正常工作(最好与展开/渲染一起)。

最佳答案

在 Go 中,您可以将已知的安全 html 字符串转换为 template.HTML类型,并且由于 unrolled/render使用 Go 的 html/template 来呈现 html 你应该可以使用它。

Renderer.HTML(w, http.StatusOK, "index", map[string]interface{}{
"content": template.HTML(markdownContent),
})

关于go - 在 Go 中将未转义的 HTML 解析为 HTML 模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43458824/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com