mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[FIX] test: do not check external links in doc
This commit is contained in:
@@ -54,6 +54,10 @@ interface FileData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function isLinkValid(link: MarkDownLink, current: FileData, files: FileData[]): boolean {
|
function isLinkValid(link: MarkDownLink, current: FileData, files: FileData[]): boolean {
|
||||||
|
if (link.link.startsWith('http')) {
|
||||||
|
// no check on external links
|
||||||
|
return true;
|
||||||
|
}
|
||||||
const parts = link.link.split("#");
|
const parts = link.link.split("#");
|
||||||
const currentParts = current.name.split("/");
|
const currentParts = current.name.split("/");
|
||||||
const path = currentParts.length > 1 ? currentParts[0] + "/" : "";
|
const path = currentParts.length > 1 ? currentParts[0] + "/" : "";
|
||||||
|
|||||||
Reference in New Issue
Block a user