mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
(fix) docs: パス決定を余分に行わないように
This commit is contained in:
parent
099f3c9cb6
commit
79a1cb0ee4
@ -174,4 +174,9 @@ html.light .markdown-body {
|
|||||||
.markdown-body > ol ,
|
.markdown-body > ol ,
|
||||||
.markdown-body :not(.ignore) ol {
|
.markdown-body :not(.ignore) ol {
|
||||||
list-style: decimal;
|
list-style: decimal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.markdown-body u {
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: .2em;
|
||||||
|
}
|
||||||
|
@ -26,19 +26,27 @@ const realHref = ref(props.href);
|
|||||||
const realTarget = ref(props.target);
|
const realTarget = ref(props.target);
|
||||||
|
|
||||||
const url = parseURL(realHref.value);
|
const url = parseURL(realHref.value);
|
||||||
|
let pathDetermined = false;
|
||||||
|
|
||||||
if (isLocalPath(realHref.value)) {
|
if (isLocalPath(realHref.value)) {
|
||||||
// 相対パスの場合(trailing slashがあるので1つくり下げる)
|
// 相対パスの場合(trailing slashがあるので1つくり下げる)
|
||||||
if (isRelative(realHref.value) && route.meta.__isDocsIndexPage !== true) {
|
if (isRelative(realHref.value) && route.meta.__isDocsIndexPage !== true) {
|
||||||
realHref.value = joinURL('../', realHref.value.replace(/^\.\//, ''));
|
realHref.value = joinURL('../', realHref.value.replace(/^\.\//, ''));
|
||||||
|
const resolved = resolve(realHref.value);
|
||||||
|
if (resolved.name && resolved.name.toString().includes('___')) {
|
||||||
|
// 相対パスがすでにローカライズされたパスの場合は以降の処理をスキップ
|
||||||
|
pathDetermined = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 内部リンクの場合
|
if (!pathDetermined) {
|
||||||
if (/^\/[a-z]{2}\//.test(realHref.value)) {
|
// 内部リンクの場合
|
||||||
realHref.value = sanitizeInternalPath(realHref.value);
|
if (/^\/[a-z]{2}\//.test(realHref.value)) {
|
||||||
} else {
|
realHref.value = sanitizeInternalPath(realHref.value);
|
||||||
// 渡されたパスがローカライズされたルートでない場合はローカライズされたパスを返す
|
} else {
|
||||||
realHref.value = sanitizeInternalPath(localePath(resolve(realHref.value).fullPath));
|
// 渡されたパスがローカライズされたルートでない場合はローカライズされたパスを返す
|
||||||
|
realHref.value = sanitizeInternalPath(localePath(resolve(realHref.value).fullPath));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (rootDomain.host !== url.host) {
|
} else if (rootDomain.host !== url.host) {
|
||||||
realTarget.value = '_blank';
|
realTarget.value = '_blank';
|
||||||
|
Loading…
Reference in New Issue
Block a user