Skip to content

Commit c4aa22c

Browse files
committed
feat: alias option supports regexp, resolve #183
1 parent 9af8559 commit c4aa22c

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

dev.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
<script>
2020
window.$docsify = {
2121
alias: {
22-
'/de-de/changelog': '/changelog',
23-
'/zh-cn/changelog': '/changelog',
24-
'/changelog': 'https://raw.githubusercontent.com/QingWei-Li/docsify/master/CHANGELOG'
22+
'.*?/changelog': 'https://raw.githubusercontent.com/QingWei-Li/docsify/master/CHANGELOG'
2523
},
2624
auto2top: true,
2725
basePath: '/docs/',

src/core/router/history/base.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
import { getPath, isAbsolutePath } from '../util'
22
import { noop } from '../../util/core'
33

4-
function getAlias (path, alias) {
5-
return alias[path] ? getAlias(alias[path], alias) : path
4+
const cached = {}
5+
6+
function getAlias (path, alias, last) {
7+
const match = Object.keys(alias).filter((key) => {
8+
const re = cached[key] || (cached[key] = new RegExp(`^${key}$`))
9+
return re.test(path) && path !== last
10+
})[0]
11+
12+
return match ? getAlias(path.replace(cached[match], alias[match]), alias, path) : path
613
}
714

815
function getFileName (path) {

0 commit comments

Comments
 (0)