Skip to content

Commit 34e240c

Browse files
Mister-Hopemeteorlxy
andauthoredApr 17, 2024··
fix(shared): check external link correctly (#1543)
Co-authored-by: Xinyu Liu <meteor.lxy@foxmail.com>
1 parent 8b1ab67 commit 34e240c

File tree

2 files changed

+12
-22
lines changed

2 files changed

+12
-22
lines changed
 
+5-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
1-
import { isLinkHttp } from './isLinkHttp.js'
1+
import { isLinkWithProtocol } from './isLinkWithProtocol.js'
22

33
const markdownLinkRegexp = /.md((\?|#).*)?$/
44

55
/**
66
* Determine a link is external or not
77
*/
8-
export const isLinkExternal = (link: string, base = '/'): boolean => {
9-
if (isLinkHttp(link)) {
10-
return true
11-
}
12-
8+
export const isLinkExternal = (link: string, base = '/'): boolean =>
9+
isLinkWithProtocol(link) ||
1310
// absolute link that does not start with `base` and does not end with `.md`
14-
if (
15-
link.startsWith('/') &&
11+
(link.startsWith('/') &&
1612
!link.startsWith(base) &&
17-
!markdownLinkRegexp.test(link)
18-
) {
19-
return true
20-
}
21-
22-
return false
23-
}
13+
!markdownLinkRegexp.test(link))

‎packages/shared/tests/isLinkExternal.spec.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ const testCases: [
2020
[['//foobar.com/base/README.md', '/base/'], true],
2121

2222
// links with other protocols
23-
[['mailto:foobar', '/base/'], false],
24-
[['tel:foobar', '/base/'], false],
25-
[['ftp://foobar.com'], false],
26-
[['ftp://foobar.com', '/base/'], false],
27-
[['ftp://foobar.com/base/README.md'], false],
28-
[['ftp://foobar.com/base/README.md', '/base/'], false],
29-
[['ms-windows-store://home', '/base/'], false],
23+
[['mailto:foobar', '/base/'], true],
24+
[['tel:foobar', '/base/'], true],
25+
[['ftp://foobar.com'], true],
26+
[['ftp://foobar.com', '/base/'], true],
27+
[['ftp://foobar.com/base/README.md'], true],
28+
[['ftp://foobar.com/base/README.md', '/base/'], true],
29+
[['ms-windows-store://home', '/base/'], true],
3030

3131
// absolute links
3232
[['/foo/bar'], false],

0 commit comments

Comments
 (0)
Please sign in to comment.