fix(transformer): ignore transforming links in storage

This commit is contained in:
taskylizard 2024-08-05 13:58:42 +00:00
parent 2003aba340
commit 1815ec807c
No known key found for this signature in database
GPG key ID: 1820131ED1A24120

View file

@ -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)
}
}