File tree 4 files changed +31
-10
lines changed
4 files changed +31
-10
lines changed Original file line number Diff line number Diff line change 98
98
"@rollup/plugin-babel" : " ^6.0.3" ,
99
99
"@rollup/plugin-commonjs" : " ^24.0.1" ,
100
100
"@rollup/plugin-json" : " ^6.0.0" ,
101
- "@rollup/plugin-node-resolve" : " ^15.0.1 " ,
101
+ "@rollup/plugin-node-resolve" : " ^15.0.2 " ,
102
102
"@testing-library/jest-dom" : " ^5.16.5" ,
103
103
"@testing-library/react" : " ^14.0.0" ,
104
104
"@testing-library/user-event" : " ^14.4.3" ,
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export default function relativeLinks(options) {
9
9
extensions = options . extensions
10
10
}
11
11
12
+ // Note: this has gotten incredibly complex over time and could use some refactoring
12
13
function visitor ( node ) {
13
14
let nodePrefix = options . prefix
14
15
if ( node && node . url && ! node . url . startsWith ( 'http' ) ) {
@@ -40,8 +41,17 @@ export default function relativeLinks(options) {
40
41
nodePrefix = ''
41
42
pathParts = [ ]
42
43
} else {
43
- const removeLast = slug . length - depth - 1
44
- pathParts = slug . slice ( 0 , removeLast )
44
+ // Special case for links that do not have a path prefix and end with a slash to direct into a README
45
+ if (
46
+ node . url . match ( / ^ [ a - z A - Z ] / ) &&
47
+ node . url . endsWith ( '/' ) &&
48
+ options . trailingSlash === true
49
+ ) {
50
+ pathParts = slug
51
+ } else {
52
+ const removeLast = slug . length - depth - 1
53
+ pathParts = slug . slice ( 0 , removeLast )
54
+ }
45
55
}
46
56
}
47
57
@@ -90,6 +100,10 @@ export default function relativeLinks(options) {
90
100
if ( node . url . includes ( 'README' ) ) {
91
101
node . url = node . url . replace ( 'README' , '' )
92
102
}
103
+
104
+ if ( node . url . endsWith ( '//' ) ) {
105
+ node . url = node . url . slice ( 0 , - 1 )
106
+ }
93
107
}
94
108
}
95
109
Original file line number Diff line number Diff line change @@ -150,6 +150,13 @@ const cases = [
150
150
slug : [ 'usage' , 'gateway' ] ,
151
151
options : { trailingSlash : true } ,
152
152
expected : '/docs/usage/ingress/#supported-annotation'
153
+ } ,
154
+ {
155
+ url : 'base64/' ,
156
+ prefix : 'docs' ,
157
+ slug : [ 'step-cli' , 'reference' ] ,
158
+ options : { trailingSlash : true , useMDX : true } ,
159
+ expected : '/docs/step-cli/reference/base64/'
153
160
}
154
161
]
155
162
You can’t perform that action at this time.
0 commit comments