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 ca4a0da commit 97c3235Copy full SHA for 97c3235
src/idlfetcher.ts
@@ -71,6 +71,9 @@ function extractIDL(dom: DocumentFragment) {
71
}
72
return !previous.classList.contains("atrisk") && !previous.textContent!.includes("IDL Index");
73
});
74
+ elements.forEach(el => {
75
+ el.querySelector("span.idlHeader")?.remove();
76
+ });
77
return elements.map(element => trimCommonIndentation(element.textContent!).trim()).join('\n\n');
78
79
0 commit comments