1
0
Fork 0
forked from forgejo/forgejo

Fix relative markdown links with anchors (#4058)

* Replace '%28' with '#'
Add test case

Signed-off-by: Jonas Franz <info@jonasfranz.software>

* Use ResolveReference instead of strings.Replace

Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
Jonas Franz 2018-05-29 05:51:42 +02:00 committed by techknowlogick
parent f86f56e19c
commit 2139c152cb
2 changed files with 18 additions and 6 deletions

View file

@ -30,6 +30,8 @@ func TestURLJoin(t *testing.T) {
"a", "b/c/"),
newTest("a/b/d",
"a/", "b/c/", "/../d/"),
newTest("https://try.gitea.io/a/b/c#d",
"https://try.gitea.io", "a/b", "c#d"),
} {
assert.Equal(t, test.Expected, URLJoin(test.Base, test.Elements...))
}