Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ export function extractSection(markdown: string, section: string): string | null

const bullets: string[] = [];
for (const line of lines) {
if (!MEMBER_BULLET_RE.test(line)) continue;
const bullet = MEMBER_BULLET_RE.exec(line);
if (!bullet) continue;
if (bullet[1] === 'constructor') continue;
if (inferSectionFromBullet(line) === targetKind) {
Comment on lines +175 to 178
bullets.push(line.trim());
}
Expand Down