File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ export default function relativeLinks(options) {
42
42
node . url = node . url . replace ( ext , '' )
43
43
}
44
44
45
+ // add prefix to rootPath if it has been passed
46
+ if ( prefix && ! rootPath . startsWith ( `/${ prefix } ` ) ) {
47
+ rootPath = `/${ prefix } ${ rootPath } `
48
+ }
49
+
45
50
// drop README from root and node url
46
51
rootPath = rootPath . replace ( '/README' , '' )
47
52
node . url = node . url . replace ( '/README' , '' )
@@ -50,7 +55,6 @@ export default function relativeLinks(options) {
50
55
const rootPathParts = rootPath . split ( sep ) . slice ( 1 )
51
56
const depth = ( originalUrl . match ( / \. \. \/ / g) || [ ] ) . length
52
57
const skipPrefix = depth > 0 && rootPathParts . length === depth
53
-
54
58
const relative = resolve ( rootPath , node . url )
55
59
if (
56
60
! skipPrefix &&
Original file line number Diff line number Diff line change @@ -166,6 +166,20 @@ const cases = [
166
166
prefix : '' ,
167
167
options : { trailingSlash : true , useMDX : true } ,
168
168
expected : '/certificate-manager/'
169
+ } ,
170
+ {
171
+ url : './certificate-authority-server-production.mdx' ,
172
+ rootPath : '/step-ca/basic-certificate-authority-operations.mdx' ,
173
+ prefix : 'docs' ,
174
+ options : { trailingSlash : true , useMDX : true } ,
175
+ expected : '/docs/step-ca/certificate-authority-server-production/'
176
+ } ,
177
+ {
178
+ url : '../step-cli/reference/ssh' ,
179
+ rootPath : '/step-ca/basic-certificate-authority-operations.mdx' ,
180
+ prefix : 'docs' ,
181
+ options : { trailingSlash : true , useMDX : true } ,
182
+ expected : '/docs/step-cli/reference/ssh/'
169
183
}
170
184
]
171
185
You can’t perform that action at this time.
0 commit comments