hdoc-tools 0.17.2 → 0.17.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/hdoc-build.js +11 -2
- package/package.json +1 -1
package/hdoc-build.js
CHANGED
@@ -630,9 +630,18 @@
|
|
630
630
|
bc_link += redirects[bc_for_path[i].link].location;
|
631
631
|
}
|
632
632
|
} else {
|
633
|
-
|
633
|
+
if (bc_for_path[i].link) {
|
634
|
+
bc_link = bc_for_path[i].link.startsWith('/') ? bc_for_path[i].link : `/${bc_for_path[i].link}`;
|
635
|
+
} else {
|
636
|
+
bc_link = '';
|
637
|
+
}
|
638
|
+
|
639
|
+
}
|
640
|
+
if (bc_link !== '') {
|
641
|
+
bc_tags += `\t\t\t\t<li class="mt-0 nav-bar-item"><a href="${bc_link}" class="ps-0 pe-0 text-decoration-none">${bc_for_path[i].text}</a></li>\n`;
|
642
|
+
} else {
|
643
|
+
bc_tags += `\t\t\t\t<li class="mt-0 nav-bar-item">${bc_for_path[i].text}</li>\n`;
|
634
644
|
}
|
635
|
-
bc_tags += `\t\t\t\t<li class="mt-0 nav-bar-item"><a href="${bc_link}" class="ps-0 pe-0 text-decoration-none">${bc_for_path[i].text}</a></li>\n`;
|
636
645
|
}
|
637
646
|
} else {
|
638
647
|
if (verbose) {
|