1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-28 06:05:50 +00:00

Merge pull request #1609 from denghongcai/develop

Add allow attribute `class` to `<code>` tag
This commit is contained in:
无闻 2015-09-10 05:51:17 -04:00
commit c3061c61a7

View File

@ -15,6 +15,7 @@ import (
"hash"
"html/template"
"math"
"regexp"
"strings"
"time"
@ -26,7 +27,8 @@ import (
"github.com/gogits/gogs/modules/setting"
)
var Sanitizer = bluemonday.UGCPolicy()
var Sanitizer = bluemonday.UGCPolicy().AllowAttrs("class").Matching(regexp.MustCompile(`[\p{L}\p{N}\s\-_',:\[\]!\./\\\(\)&]*`)).OnElements("code")
// Encode string to md5 hex value.
func EncodeMd5(str string) string {