- "This rule isn't perfect as it only removes the title line and keeps the number of comments" Try a pattern like this, to match three 's in a row: :xpath(.. | ../following-sibling::tr[1] | ../following-sibling::tr[2]) (Or a cyclic permutation of it, depending on which you're anchoring to).
6 points by perihelions:
news.ycombinator.com##.title:has-text(/\b(Elon|Altman|OpenAI)\b/i):xpath(.. | ../following-sibling::tr[1] | ../following-sibling::tr[2])
...