From ed7a886da8cc019ca6b73af6056207cb39a76373 Mon Sep 17 00:00:00 2001 From: ache Date: Wed, 5 Jul 2023 09:18:32 +0200 Subject: =?UTF-8?q?=F0=9F=96=BC=EF=B8=8F=20Fix=20image=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/build/loadMD.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/loadMD.mjs b/src/build/loadMD.mjs index 397ab88..6ba4f76 100644 --- a/src/build/loadMD.mjs +++ b/src/build/loadMD.mjs @@ -30,7 +30,7 @@ const loadMD = (listFile, suffix, lang) => { const logo = select('img', intro); if (logo && logo?.properties) { if (logo.properties.src[0] != '/') { - logo.properties.src = `${suffix}/${logo.properties.src}`; + logo.properties.src = `/${suffix}/${logo.properties.src}`; } logo.properties.height = '150'; logo.properties.width = '150'; -- cgit v1.2.3