diff --git a/components/content/ProseA.vue b/components/content/ProseA.vue index 0080af8b..433a98cf 100644 --- a/components/content/ProseA.vue +++ b/components/content/ProseA.vue @@ -31,7 +31,11 @@ try { } } catch(_) { if(realHref !== '') { - realHref = localePath(realHref); + if (!realHref.startsWith('.') || !realHref.startsWith('http')) { + realHref = localePath(realHref); + } else { + realHref = '../' + realHref; + } } }