mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-05-09 08:42:03 +02:00
nameRe used [^']+ which stopped at \' in source text, truncating names like L'Orient-Le Jour to "L\" and Lenny's Newsletter to "Lenny\". Use (?:[^'\\]|\\.)* to skip escape sequences. Also removed stray + quantifier after closing quote.