File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
8
## 3.6.3 / 2017-04-25
4
9
5
10
* fix(external-script): script attrs
6
11
7
12
## 3.6.2/ 2017-04-12
8
13
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 )
10
15
* GA: Send hash instead of complete href (#147 )
11
16
12
17
## 3.6.1 / 2017-04-09
Original file line number Diff line number Diff line change @@ -314,7 +314,7 @@ var getParentPath = cached(function (path) {
314
314
} ) ;
315
315
316
316
var cleanPath = cached ( function ( path ) {
317
- return path . replace ( / \/ + / g, '/' )
317
+ return path . replace ( / ( [ ^ : ] ) \/ { 2 , } / g, '$1 /' )
318
318
} ) ;
319
319
320
320
function replaceHash ( path ) {
You can’t perform that action at this time.
0 commit comments