mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
#2161 No issue linking in commits when issue number in brackets
This commit is contained in:
parent
4108c12092
commit
5911fc3512
1 changed files with 3 additions and 3 deletions
|
@ -133,7 +133,7 @@ var (
|
||||||
MentionPattern = regexp.MustCompile(`(\s|^)@[0-9a-zA-Z_\.]+`)
|
MentionPattern = regexp.MustCompile(`(\s|^)@[0-9a-zA-Z_\.]+`)
|
||||||
commitPattern = regexp.MustCompile(`(\s|^)https?.*commit/[0-9a-zA-Z]+(#+[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-]*)?`)
|
issueFullPattern = regexp.MustCompile(`(\s|^)https?.*issues/[0-9]+(#+[0-9a-zA-Z-]*)?`)
|
||||||
issueIndexPattern = regexp.MustCompile(`( |^)#[0-9]+\b`)
|
issueIndexPattern = regexp.MustCompile(`(^|\W)#[0-9]+\b`)
|
||||||
sha1CurrentPattern = regexp.MustCompile(`\b[0-9a-f]{40}\b`)
|
sha1CurrentPattern = regexp.MustCompile(`\b[0-9a-f]{40}\b`)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -156,8 +156,8 @@ func RenderIssueIndexPattern(rawBytes []byte, urlPrefix string, metas map[string
|
||||||
for _, m := range ms {
|
for _, m := range ms {
|
||||||
var space string
|
var space string
|
||||||
m2 := m
|
m2 := m
|
||||||
if m2[0] == ' ' {
|
if m2[0] != '#' {
|
||||||
space = " "
|
space = string(m2[0])
|
||||||
m2 = m2[1:]
|
m2 = m2[1:]
|
||||||
}
|
}
|
||||||
if metas == nil {
|
if metas == nil {
|
||||||
|
|
Loading…
Reference in a new issue