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 b101d10 commit d2d7e09Copy full SHA for d2d7e09
scripts/crawl-publications.ts
@@ -309,7 +309,7 @@ function parsePublicationFromLi(liContent: string): Publication | null {
309
const isPaperHost = PAPER_HOST_DOMAINS.some(domain => url.includes(domain));
310
const isTitle = isPaperHost &&
311
text.length > MIN_TITLE_LINK_TEXT_LENGTH &&
312
- !text.toLowerCase().includes('code');
+ (!text.toLowerCase().includes('code') || text.length > 30);
313
314
links.push({ text, url, isTitle });
315
}
0 commit comments