Compare commits

...
3 Commits
Author SHA1 Message Date
qingwei.li e70327ab2b -> v3.5.1 2017-03-25 16:26:11 +08:00
qingwei.li 7209b82982 bump: 3.5.1 2017-03-25 16:26:07 +08:00
qingwei.li 594299ffbd fix: .md file extension regex 2017-03-25 16:25:03 +08:00
6 changed files with 8 additions and 5 deletions
+3
View File
@@ -1,3 +1,6 @@
# 3.5.1 / 2017-03-25
* fix: .md file extension regex
# 3.5.0 / 2017-03-25
+1 -1
View File
@@ -1,6 +1,6 @@
![logo](_media/icon.svg)
# docsify <small>3.4</small>
# docsify <small>3.5</small>
> A magical documentation site generator.
+1 -1
View File
@@ -386,7 +386,7 @@ function toURL (path, params) {
route.query = merge({}, route.query, params);
path = route.path + stringifyQuery(route.query);
path = path.replace(/\.md/g, '');
path = path.replace(/\.md(\?)|\.md$/, '$1');
return cleanPath('#/' + path)
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "docsify",
"version": "3.5.0",
"version": "3.5.1",
"description": "A magical documentation generator.",
"author": {
"name": "qingwei-li",
+1 -1
View File
@@ -70,7 +70,7 @@ export function toURL (path, params) {
route.query = merge({}, route.query, params)
path = route.path + stringifyQuery(route.query)
path = path.replace(/\.md/g, '')
path = path.replace(/\.md(\?)|\.md$/, '$1')
return cleanPath('#/' + path)
}