1
0
Fork 0
forked from forgejo/forgejo

Make short link pattern greedy (#2259)

Multiple links on the same line are currently not recognized correctly.
This commit is contained in:
Michael Kuhn 2017-08-05 23:52:19 +02:00 committed by Lauris BH
parent a3262636b8
commit d05150a331
2 changed files with 7 additions and 1 deletions

View file

@ -64,7 +64,7 @@ var (
Sha1CurrentPattern = regexp.MustCompile(`(?:^|\s|\()([0-9a-f]{7,40})\b`)
// ShortLinkPattern matches short but difficult to parse [[name|link|arg=test]] syntax
ShortLinkPattern = regexp.MustCompile(`(\[\[.*\]\]\w*)`)
ShortLinkPattern = regexp.MustCompile(`(\[\[.*?\]\]\w*)`)
// AnySHA1Pattern allows to split url containing SHA into parts
AnySHA1Pattern = regexp.MustCompile(`(http\S*)://(\S+)/(\S+)/(\S+)/(\S+)/([0-9a-f]{40})(?:/?([^#\s]+)?(?:#(\S+))?)?`)