Skip to content

Commit

Permalink
remove any method or property with underscore in submodule list of na…
Browse files Browse the repository at this point in the history
…vbar
  • Loading branch information
0div committed Nov 27, 2024
1 parent 8fe82fa commit bd80de4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/prebuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function getSubModules(pkg, href, dirPath) {
let title = line.slice(3).trim()
// Remove backslashes from title
title = title.replace(/\\/g, '')
if (title) {
if (title && !title.startsWith('_')) {
subModules.push({
title: title,
href: href + toAnchorLink(title),
Expand Down

0 comments on commit bd80de4

Please sign in to comment.