aboutsummaryrefslogtreecommitdiff
path: root/modules/base/tool.go
diff options
context:
space:
mode:
authorKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-01-13 13:25:52 +0100
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-01-13 13:25:52 +0100
commit8e09e03127d2128453a7cd1337e8f51d33147e1d (patch)
tree5ffdbb0d99dae035d9ab806dd15aa099295fa212 /modules/base/tool.go
parentfc4a4d38d16e47fe2584bd574872929669de42c1 (diff)
Checklist-rendering implemented
Diffstat (limited to 'modules/base/tool.go')
-rw-r--r--modules/base/tool.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go
index 6bfd912d..c6522d12 100644
--- a/modules/base/tool.go
+++ b/modules/base/tool.go
@@ -31,7 +31,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-var Sanitizer = bluemonday.UGCPolicy().AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code")
+var Sanitizer = bluemonday.UGCPolicy().AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code").AllowElements("input").AllowAttrs("type", "checked", "disabled").OnElements("input")
// EncodeMD5 encodes string to md5 hex value.
func EncodeMD5(str string) string {