From 1815ec807c30e8ba5ffad6117baf2c9d4c1fa72c Mon Sep 17 00:00:00 2001 From: taskylizard <75871323+taskylizard@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:58:42 +0000 Subject: [PATCH] fix(transformer): ignore transforming links in storage --- docs/.vitepress/transformer.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/.vitepress/transformer.ts b/docs/.vitepress/transformer.ts index 289c0014d..1a574cab3 100644 --- a/docs/.vitepress/transformer.ts +++ b/docs/.vitepress/transformer.ts @@ -143,6 +143,8 @@ export function transformer(): Plugin { const _contents = transformGuide(contents) return header + _contents } + if (_id === 'storage.md') return header + contents + return header + transformLinks(contents) } }