UNPKG

vuepress-plugin-replaceurl

Version:
45 lines (33 loc) 865 B
# vuepress-plugin-replaceurl ## install ```bash yarn add liyao52033/vuepress-plugin-replaceurl -D ``` ## Use ### Default ```js // .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: ```js // .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']]] } ```