Browse Source

#2161 fix wrong regexp

tags/v1.2.0-rc1
Unknwon 9 years ago
parent
commit
fa1c069b93
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/base/markdown.go

+ 1
- 1
modules/base/markdown.go View File

@@ -133,7 +133,7 @@ var (
MentionPattern = regexp.MustCompile(`(\s|^)@[0-9a-zA-Z_\.]+`)
commitPattern = regexp.MustCompile(`(\s|^)https?.*commit/[0-9a-zA-Z]+(#+[0-9a-zA-Z-]*)?`)
issueFullPattern = regexp.MustCompile(`(\s|^)https?.*issues/[0-9]+(#+[0-9a-zA-Z-]*)?`)
issueIndexPattern = regexp.MustCompile(`(^|\W)#[0-9]+\b`)
issueIndexPattern = regexp.MustCompile(`( |^|\()#[0-9]+\b`)
sha1CurrentPattern = regexp.MustCompile(`\b[0-9a-f]{40}\b`)
)



Loading…
Cancel
Save