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 4cc342b commit 0ffb148Copy full SHA for 0ffb148
src/build/mdn-comments.ts
@@ -137,7 +137,7 @@ export async function generateDescriptions(): Promise<{
137
const content = await fs.readFile(fileURL, "utf-8");
138
const slug = generateSlug(content);
139
const types = generateTypes(content);
140
- if (!slug || slug.length === 0 || (types && types[0] === "ignore"))
+ if (!slug || slug.length === 0 || !types)
141
return;
142
143
const summary = extractSummary(content);
0 commit comments