Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bi-link): isRelativePath invalid in vuepress #361

Merged
merged 7 commits into from
Dec 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions packages/markdown-it-bi-directional-links/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,20 @@ export const BiDirectionalLinks: (options?: BiDirectionalLinksOptions) => Plugin

let resolvedNewHref: string
if (isRelativePath) {
resolvedNewHref = relative(dirname(state.env.relativePath), matchedHref)
.split(sep)
.join('/')
if (state.env.relativePath) { // VitePress
resolvedNewHref = relative(dirname(state.env.relativePath), matchedHref)
.split(sep)
.join('/')
}
else if (state.env.filePathRelative) { // VuePress, see https://github.com/nolebase/integrations/pull/361 for details
resolvedNewHref = relative(dirname(state.env.filePathRelative), matchedHref)
.split(sep)
.join('/')
}
else { // other
console.error('Can\'t find local file path')
return false
}
}
else {
resolvedNewHref = posix.join(
Expand Down
Loading