aboutsummaryrefslogtreecommitdiff
path: root/modules/base/tool.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-05 13:11:45 -0500
committerUnknwon <u@gogs.io>2016-02-05 13:11:45 -0500
commit4e96a4a62b1bfbe07bc97e75478c1289f6b4d5a9 (patch)
tree789e608ccd186743b8ffb0dc99b4808fa4de23db /modules/base/tool.go
parentd4583ebd4b2c1508ce01ea0e7f62dacd223db5c1 (diff)
parent1ab8a60d737b278c176d0b6204843a79dab0e878 (diff)
Merge pull request #2406 from bkcsoft/feature/markdown-custom-url-scheme
Feature/markdown custom url scheme
Diffstat (limited to 'modules/base/tool.go')
-rw-r--r--modules/base/tool.go19
1 files changed, 11 insertions, 8 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go
index f98ae28b..ad39db89 100644
--- a/modules/base/tool.go
+++ b/modules/base/tool.go
@@ -31,16 +31,19 @@ import (
"github.com/gogits/gogs/modules/setting"
)
-func BuildSanitizer() (p *bluemonday.Policy) {
- p = bluemonday.UGCPolicy()
- p.AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code")
+var Sanitizer = bluemonday.UGCPolicy()
- p.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
- p.AllowAttrs("checked", "disabled").OnElements("input")
- return p
-}
+func BuildSanitizer() {
+ // Normal markdown-stuff
+ Sanitizer.AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code")
+
+ // Checkboxes
+ Sanitizer.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
+ Sanitizer.AllowAttrs("checked", "disabled").OnElements("input")
-var Sanitizer = BuildSanitizer()
+ // Custom URL-Schemes
+ Sanitizer.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
+}
// EncodeMD5 encodes string to md5 hex value.
func EncodeMD5(str string) string {