vuepress-plugin-replaceurl
v1.1.1
Published
Replace VuePress Blog URL of Pages and NavLinks.
Downloads
7
Maintainers
Readme
vuepress-plugin-replaceurl
install
yarn add liyao52033/vuepress-plugin-replaceurl -D
Use
Default
// .vuepress/config.js
// or
// .vuepress/theme/index.js
module.exports = {
plugins: ['replaceurl']
}
The Default configuration is for vuepress-plugin-autobar, it clean the cumbersome parameter.
Default Rule: [[/nav[\.\-_]*\d*[\.\-_]*/gi, ''], [/\d+[\.\-_]*/gi, '']]
before use:
/nav.10.js/10-core/mian-xiang-dui-xiang/mian-xiang-dui-xiang.html
after use:
/js/core/mian-xiang-dui-xiang/mian-xiang-dui-xiang.html
Customize
You can customize your replace rules. Example:
// .vuepress/config.js
// or
// .vuepress/theme/index.js
module.exports = {
plugins: ['replaceurl', [/regex/i, 'new world']]
// or multiple rules
// plugins: ['replaceurl', [[/regex1/, 'world'], [/regex2/gi, 'world2']]]
}