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 0c29cfc commit 50a9fedCopy full SHA for 50a9fed
src/DocsParser.ts
@@ -70,6 +70,9 @@ export class DocsParser {
70
const isSecondLevelClassHeading =
71
heading.level === 2 && heading.heading.startsWith('Class: ');
72
const isClass = isSecondLevelClassHeading && !isTopLevelModuleHeading;
73
+ if (isTopLevelModuleHeading && heading.heading.endsWith('(Draft)')) {
74
+ continue;
75
+ }
76
if (isTopLevelModuleHeading || isSecondLevelClassHeading) {
77
let name = heading.heading;
78
if (isStructure) {
0 commit comments