Skip to content

Commit cba361e

Browse files
Merge pull request #18 from zentered/fix/reference-links
fix: conditional for "reference" links that do not start with a path prefix
2 parents 4879c3b + bddd21c commit cba361e

File tree

4 files changed

+31
-10
lines changed

4 files changed

+31
-10
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"@rollup/plugin-babel": "^6.0.3",
9999
"@rollup/plugin-commonjs": "^24.0.1",
100100
"@rollup/plugin-json": "^6.0.0",
101-
"@rollup/plugin-node-resolve": "^15.0.1",
101+
"@rollup/plugin-node-resolve": "^15.0.2",
102102
"@testing-library/jest-dom": "^5.16.5",
103103
"@testing-library/react": "^14.0.0",
104104
"@testing-library/user-event": "^14.4.3",

pnpm-lock.yaml

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

src/lib/remark-plugins/links/index.js

+16-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export default function relativeLinks(options) {
99
extensions = options.extensions
1010
}
1111

12+
// Note: this has gotten incredibly complex over time and could use some refactoring
1213
function visitor(node) {
1314
let nodePrefix = options.prefix
1415
if (node && node.url && !node.url.startsWith('http')) {
@@ -40,8 +41,17 @@ export default function relativeLinks(options) {
4041
nodePrefix = ''
4142
pathParts = []
4243
} 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-zA-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+
}
4555
}
4656
}
4757

@@ -90,6 +100,10 @@ export default function relativeLinks(options) {
90100
if (node.url.includes('README')) {
91101
node.url = node.url.replace('README', '')
92102
}
103+
104+
if (node.url.endsWith('//')) {
105+
node.url = node.url.slice(0, -1)
106+
}
93107
}
94108
}
95109

test/remark-plugins/links.test.js

+7
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,13 @@ const cases = [
150150
slug: ['usage', 'gateway'],
151151
options: { trailingSlash: true },
152152
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/'
153160
}
154161
]
155162

0 commit comments

Comments
 (0)