diff --git a/docs/static/v2_filter.js b/docs/static/v2_filter.js
index a05fadd0..76a2fb4d 100644
--- a/docs/static/v2_filter.js
+++ b/docs/static/v2_filter.js
@@ -27,7 +27,13 @@
h1.textContent.includes("Nubenetes Elite Portal (V2)") ||
h1.textContent.includes("Agentic Video Hub") ||
h1.textContent.includes("Technical Tags Index") ||
- h1.textContent.includes("Intelligence Digest")
+ h1.textContent.includes("Intelligence Digest") ||
+ // Topic Map / Methodology list categories and legend rows, not
+ // tagged resources: their
items carry no .md-tag, so the
+ // maturity pills would always filter to zero and the "X of Y
+ // resources" count is misleading. Skip them.
+ h1.textContent.includes("Topic Map") ||
+ h1.textContent.includes("Methodology")
)) {
return;
}
diff --git a/v2-mkdocs.yml b/v2-mkdocs.yml
index 2b43f42e..dff38db7 100644
--- a/v2-mkdocs.yml
+++ b/v2-mkdocs.yml
@@ -114,7 +114,7 @@ extra_css:
- static/v2_elite.css?v=2.9.17
extra_javascript:
- - static/v2_filter.js?v=2.9.12
+ - static/v2_filter.js?v=2.9.19
markdown_extensions:
- admonition