mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-29 15:57:56 +01:00
Fix filePreviewPattern
This commit is contained in:
parent
fae8d9f70d
commit
6721cba75b
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ var (
|
||||||
validLinksPattern = regexp.MustCompile(`^[a-z][\w-]+://`)
|
validLinksPattern = regexp.MustCompile(`^[a-z][\w-]+://`)
|
||||||
|
|
||||||
// filePreviewPattern matches "http://domain/org/repo/src/commit/COMMIT/filepath#L1-L2"
|
// filePreviewPattern matches "http://domain/org/repo/src/commit/COMMIT/filepath#L1-L2"
|
||||||
filePreviewPattern = regexp.MustCompile(`https?://((?:\S+/){4,5})src/commit/([0-9a-f]{4,64})/(\S+)#(L\d+(?:-L\d+)?)`)
|
filePreviewPattern = regexp.MustCompile(`https?://((?:\S+/){3})src/commit/([0-9a-f]{4,64})/(\S+)#(L\d+(?:-L\d+)?)`)
|
||||||
|
|
||||||
// While this email regex is definitely not perfect and I'm sure you can come up
|
// While this email regex is definitely not perfect and I'm sure you can come up
|
||||||
// with edge cases, it is still accepted by the CommonMark specification, as
|
// with edge cases, it is still accepted by the CommonMark specification, as
|
||||||
|
|
Loading…
Reference in a new issue