Browse Source

Changed EscapePound function with string replace function

for-closed-social
Nikko Miu 8 years ago
parent
commit
9a43fcb61c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/template/template.go

+ 1
- 1
modules/template/template.go View File

@ -97,7 +97,7 @@ func NewFuncMap() []template.FuncMap {
"ActionContent2Commits": ActionContent2Commits, "ActionContent2Commits": ActionContent2Commits,
"ToUtf8": ToUtf8, "ToUtf8": ToUtf8,
"EscapePound": func(str string) string { "EscapePound": func(str string) string {
return strings.Replace(strings.Replace(str, "%", "%25", -1), "#", "%23", -1)
return strings.NewReplacer("%", "%25", "#", "%23", " ", "%20").Replace(str)
}, },
"RenderCommitMessage": RenderCommitMessage, "RenderCommitMessage": RenderCommitMessage,
"ThemeColorMetaTag": func() string { "ThemeColorMetaTag": func() string {

Loading…
Cancel
Save