Skip to content

Commit 4e52315

Browse files
committed
[build] 4.3.11
1 parent 91d6337 commit 4e52315

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

docs/_coverpage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![logo](_media/icon.svg)
22

3-
# docsify <small>4.3.10</small>
3+
# docsify <small>4.3.11</small>
44

55
> A magical documentation site generator.
66

lib/docsify.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -3644,7 +3644,9 @@ var HashHistory = (function (History$$1) {
36443644
path = path.replace(/\.md(\?)|\.md$/, '$1');
36453645

36463646
if (local) {
3647-
path = currentRoute.substr(0, currentRoute.indexOf('?')) + path;
3647+
var idIndex = currentRoute.indexOf('?');
3648+
path =
3649+
(idIndex > 0 ? currentRoute.substr(0, idIndex) : currentRoute) + path;
36483650
}
36493651

36503652
return cleanPath('#/' + path)
@@ -3981,7 +3983,7 @@ initGlobalAPI();
39813983
/**
39823984
* Version
39833985
*/
3984-
Docsify.version = '4.3.10';
3986+
Docsify.version = '4.3.11';
39853987

39863988
/**
39873989
* Run Docsify

lib/docsify.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/docsify-server-renderer/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/docsify-server-renderer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docsify-server-renderer",
3-
"version": "4.3.10",
3+
"version": "4.3.11",
44
"description": "docsify server renderer",
55
"author": {
66
"name": "qingwei-li",

0 commit comments

Comments
 (0)