Skip to content

Commit 890d29f

Browse files
committed
bump: 3.6.4
1 parent 76c041a commit 890d29f

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

Diff for: CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
# Changelog
22

3+
## 3.6.4 / 2017-04-28
4+
5+
6+
* fix(util): correctly clean up duplicate slashes, fixed ([#153](https://github.com/QingWei-Li/docsify/issues/153)
7+
38
## 3.6.3 / 2017-04-25
49

510
* fix(external-script): script attrs
611

712
## 3.6.2/ 2017-04-12
813

9-
* feat(external-script): detect more than one script dom, fixed #146
14+
* feat(external-script): detect more than one script dom, fixed ([#146](https://github.com/QingWei-Li/docsify/issues/146)
1015
* GA: Send hash instead of complete href (#147)
1116

1217
## 3.6.1 / 2017-04-09

Diff for: lib/docsify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ var getParentPath = cached(function (path) {
314314
});
315315

316316
var cleanPath = cached(function (path) {
317-
return path.replace(/\/+/g, '/')
317+
return path.replace(/([^:])\/{2,}/g, '$1/')
318318
});
319319

320320
function replaceHash (path) {

0 commit comments

Comments
 (0)