Skip to content

Commit 3a9fd81

Browse files
committed
Custom URL-Schemas for Markdown
1 parent ab0ba4b commit 3a9fd81

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

modules/base/markdown.go

+3-9
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,10 @@ func isalnum(c byte) bool {
2929
return (c >= '0' && c <= '9') || isletter(c)
3030
}
3131

32-
var validLinks = [][]byte{[]byte("http://"), []byte("https://"), []byte("ftp://"), []byte("mailto://")}
32+
var validLinksPattern = regexp.MustCompile(`^[a-z][\w-]+://`)
3333

3434
func isLink(link []byte) bool {
35-
for _, prefix := range validLinks {
36-
if len(link) > len(prefix) && bytes.Equal(bytes.ToLower(link[:len(prefix)]), prefix) && isalnum(link[len(prefix)]) {
37-
return true
38-
}
39-
}
40-
41-
return false
35+
return validLinksPattern.Match(link)
4236
}
4337

4438
func IsMarkdownFile(name string) bool {
@@ -346,7 +340,7 @@ OUTER_LOOP:
346340
func RenderMarkdown(rawBytes []byte, urlPrefix string, metas map[string]string) []byte {
347341
result := RenderRawMarkdown(rawBytes, urlPrefix)
348342
result = PostProcessMarkdown(result, urlPrefix, metas)
349-
result = Sanitizer.SanitizeBytes(result)
343+
result = BuildSanitizer().SanitizeBytes(result)
350344
return result
351345
}
352346

modules/base/tool.go

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ func BuildSanitizer() (p *bluemonday.Policy) {
3737

3838
p.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
3939
p.AllowAttrs("checked", "disabled").OnElements("input")
40+
p.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
4041
return p
4142
}
4243

modules/setting/setting.go

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ var (
117117
// Markdown sttings
118118
Markdown struct {
119119
EnableHardLineBreak bool
120+
CustomURLSchemes []string `ini:"CUSTOM_URL_SCHEMES"`
120121
}
121122

122123
// Picture settings

modules/template/template.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func Safe(raw string) template.HTML {
105105
}
106106

107107
func Str2html(raw string) template.HTML {
108-
return template.HTML(base.Sanitizer.Sanitize(raw))
108+
return template.HTML(base.BuildSanitizer().Sanitize(raw))
109109
}
110110

111111
func Range(l int) []int {

0 commit comments

Comments
 (0)