summaryrefslogtreecommitdiff
path: root/tools/doc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/doc')
-rw-r--r--tools/doc/allhtml.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/doc/allhtml.js b/tools/doc/allhtml.js
index d185538ab6..3de538e424 100644
--- a/tools/doc/allhtml.js
+++ b/tools/doc/allhtml.js
@@ -73,3 +73,16 @@ all = all.slice(0, apiStart.index + apiStart[0].length) +
// Write results.
fs.writeFileSync(source + '/all.html', all, 'utf8');
+
+// Validate all hrefs have a target.
+const ids = new Set();
+const idRe = / id="(\w+)"/g;
+let match;
+while (match = idRe.exec(all)) {
+ ids.add(match[1]);
+}
+
+const hrefRe = / href="#(\w+)"/g;
+while (match = hrefRe.exec(all)) {
+ if (!ids.has(match[1])) throw new Error(`link not found: ${match[1]}`);
+}