We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c3d083 commit d6a0705Copy full SHA for d6a0705
packages/doxdox-renderer-bootstrap/src/index.ts
@@ -68,7 +68,12 @@ ${method.returns.map(
68
const renderFileNav = (file: File) => `<p><b>${file.path}</b></p>
69
<ul class="list-unstyled ml-0">
70
${file.methods
71
- .map(method => `<li><a href="#${method.slug}">${method.name}</a></li>`)
+ .map(
72
+ method =>
73
+ `<li><a href="#${method.slug}" class="${
74
+ method.private ? 'text-muted' : ''
75
+ }">${method.name}</a></li>`
76
+ )
77
.join('')}
78
</ul>`;
79
0 commit comments