diff options
author | Unknwon <u@gogs.io> | 2016-01-25 13:56:13 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-01-25 13:56:13 -0500 |
commit | 71b9537393e3b1a377e63b00046031d53c0681d5 (patch) | |
tree | 6ed4c155305bcf29d60ee3e3f3a22a00cf97a58d /modules/base/tool.go | |
parent | b33abc62805611f37fc92a3e75ece326efaabaf2 (diff) | |
parent | a1a4f1103caa42f090314c77c695f4e34781da64 (diff) |
Merge pull request #2396 from bkcsoft/feature/markdown-checklist
[Feature] Markdown Checklist-rendering
Diffstat (limited to 'modules/base/tool.go')
-rw-r--r-- | modules/base/tool.go | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go index 6bfd912d..f98ae28b 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -31,7 +31,16 @@ import ( "github.com/gogits/gogs/modules/setting" ) -var Sanitizer = bluemonday.UGCPolicy().AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code") +func BuildSanitizer() (p *bluemonday.Policy) { + p = bluemonday.UGCPolicy() + p.AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code") + + p.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input") + p.AllowAttrs("checked", "disabled").OnElements("input") + return p +} + +var Sanitizer = BuildSanitizer() // EncodeMD5 encodes string to md5 hex value. func EncodeMD5(str string) string { |