We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbcb436 commit abcd39fCopy full SHA for abcd39f
models/wiki.go
@@ -33,6 +33,7 @@ func ToWikiPageURL(name string) string {
33
// that are not belong to wiki repository.
34
func ToWikiPageName(urlString string) string {
35
name, _ := url.QueryUnescape(strings.Replace(urlString, "-", " ", -1))
36
+ name = strings.Replace(name, "\t", " ", -1)
37
return strings.Replace(strings.TrimLeft(name, "./"), "/", " ", -1)
38
}
39
0 commit comments