diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-04-08 14:21:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 14:21:50 +0800 |
commit | 8f00979f732c976b75086f75ab7e776d2ee18771 (patch) | |
tree | 2f8490f87912e1f5bdd3fa55fa01ed9589e1add5 /tests/integration/markup_external_test.go | |
parent | 7ee2c1336cddeb4c966d1d6f0dbe1e7680c1ee9a (diff) | |
download | gitea-8f00979f732c976b75086f75ab7e776d2ee18771.tar.gz gitea-8f00979f732c976b75086f75ab7e776d2ee18771.zip |
Drop "unrolled/render" package (#23965)
None of the features of `unrolled/render` package is used.
The Golang builtin "html/template" just works well. Then we can improve
our HTML render to resolve the "$.root.locale.Tr" problem as much as
possible.
Next step: we can have a template render pool (by Clone), then we can
inject global functions with dynamic context to every `Execute` calls.
Then we can use `{{Locale.Tr ....}}` directly in all templates , no need
to pass the `$.root.locale` again and again.
Diffstat (limited to 'tests/integration/markup_external_test.go')
-rw-r--r-- | tests/integration/markup_external_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/markup_external_test.go b/tests/integration/markup_external_test.go index c0e08a4f4f..5f102f8d62 100644 --- a/tests/integration/markup_external_test.go +++ b/tests/integration/markup_external_test.go @@ -27,7 +27,7 @@ func TestExternalMarkupRenderer(t *testing.T) { const repoURL = "user30/renderer" req := NewRequest(t, "GET", repoURL+"/src/branch/master/README.html") resp := MakeRequest(t, req, http.StatusOK) - assert.EqualValues(t, "text/html; charset=UTF-8", resp.Header()["Content-Type"][0]) + assert.EqualValues(t, "text/html; charset=utf-8", resp.Header()["Content-Type"][0]) bs, err := io.ReadAll(resp.Body) assert.NoError(t, err) |