We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e152cf7 commit f68b165Copy full SHA for f68b165
tools/doc/html.js
@@ -226,8 +226,8 @@ function preprocessElements({ filename }) {
226
}
227
228
// Do not link to the section we are already in.
229
- const noLinking = filename === 'documentation' &&
230
- heading !== null && heading.value === 'Stability Index';
+ const noLinking = filename.includes('documentation') &&
+ heading !== null && heading.children[0].value === 'Stability Index';
231
232
// collapse blockquote and paragraph into a single node
233
node.type = 'paragraph';
0 commit comments