feat: pass source path to markdown parser for icon resolution

Pass the file's base path through the markdown parsing pipeline to
allow the icon directive to resolve relative asset paths correctly
using an absolute fallback chain.
This commit is contained in:
2026-07-08 16:38:19 +08:00
parent 2dba19e1f8
commit 6ab6b76978
5 changed files with 35 additions and 14 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ export const Article: Component<ArticleProps & ParentProps> = (props) => {
<div
class="relative"
ref={setContentDom}
innerHTML={parseMarkdown(content()!)}
innerHTML={parseMarkdown(content()!, props.src)}
/>
{props.children}
</ArticleDomCtx.Provider>