We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed that there is a pinyinNav used to be compatible with vuepress-pluin-permalink-pinyin, it seems that it forgot to be compatible with sidebar
/** * Translate chinese to pinyin. * Compatible with vuepress-pluin-permalink-pinyin. * @param {Array} navArr */ function transliteratePinyin(navArr) { return navArr.map(nav => { const result = { ...nav }; if (nav.link) { result.link = slugify(nav.link, { ignore: ["/", "."] }); } if (nav.items) { result.items = transliteratePinyin(nav.items); } return result; }); }
The text was updated successfully, but these errors were encountered:
I need help supporting pinyin. Would you like to add a PR?
Sorry, something went wrong.
It is my pleasure.
No branches or pull requests
I noticed that there is a pinyinNav used to be compatible with vuepress-pluin-permalink-pinyin, it seems that it forgot to be compatible with sidebar
The text was updated successfully, but these errors were encountered: