1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-17 19:26:14 +02:00
gitea/templates/base/alert_details.tmpl
wxiaoguang fb42972c05
Rename Str2html to SanitizeHTML and clarify its behavior (#29516)
Str2html was abused a lot. So use a proper name for it: SanitizeHTML

And add some tests to show its behavior.
2024-03-01 10:16:19 +00:00

8 lines
114 B
Handlebars

{{.Message}}
<details>
<summary>{{.Summary}}</summary>
<code>
{{.Details | SanitizeHTML}}
</code>
</details>