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 f45c39c commit 08d4e5bCopy full SHA for 08d4e5b
lib/remark-glossary.ts
@@ -29,6 +29,11 @@ export function remarkGlossary(options: RemarkGlossaryOptions) {
29
return;
30
}
31
32
+ // don't process the many MCP tool pages
33
+ if (file.history?.[0]?.includes("/mcp-servers/")) {
34
+ return;
35
+ }
36
+
37
// Lazy-load and cache glossary terms
38
if (!cachedTerms || cachedGlossaryPath !== glossaryPath) {
39
cachedTerms = sortTermsByLength(parseGlossary(glossaryPath));
0 commit comments