diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-12-09 02:18:25 -0500 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-12-09 02:18:25 -0500 |
commit | 9a1fe801e526ae1bc0a211d8a218aabcf985376d (patch) | |
tree | e40f92f1b34f81c60ffef084761b7d6cd4336aa2 /modules/base/markdown.go | |
parent | 6f71632e3ef6c0c818b3224e501fa66583108806 (diff) | |
download | gitea-9a1fe801e526ae1bc0a211d8a218aabcf985376d.tar.gz gitea-9a1fe801e526ae1bc0a211d8a218aabcf985376d.zip |
fix #711
Diffstat (limited to 'modules/base/markdown.go')
-rw-r--r-- | modules/base/markdown.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/base/markdown.go b/modules/base/markdown.go index c85bd02069..b2f94c480b 100644 --- a/modules/base/markdown.go +++ b/modules/base/markdown.go @@ -154,7 +154,7 @@ func RenderSpecialLink(rawBytes []byte, urlPrefix string) []byte { rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf( ` <a href="%s">#%s</a>`, m, ShortSha(string(m[i+7:j])))), -1) } - rawBytes = RenderissueIndexPattern(rawBytes, urlPrefix) + rawBytes = RenderIssueIndexPattern(rawBytes, urlPrefix) rawBytes = RenderSha1CurrentPattern(rawBytes, urlPrefix) return rawBytes } @@ -168,7 +168,7 @@ func RenderSha1CurrentPattern(rawBytes []byte, urlPrefix string) []byte { return rawBytes } -func RenderissueIndexPattern(rawBytes []byte, urlPrefix string) []byte { +func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string) []byte { ms := issueIndexPattern.FindAll(rawBytes, -1) for _, m := range ms { rawBytes = bytes.Replace(rawBytes, m, []byte(fmt.Sprintf( |