1 Open Issue Need Help Last updated: Feb 5, 2026

Open Issues Need Help

View All on GitHub
Software Development Application Development

AI Summary: This issue proposes optimizing the link detection functionality by compiling the regular expression only once using `once_cell::sync::Lazy`. Currently, the regex is recompiled on every function call, which is inefficient. The proposed solution involves using a static `Lazy` variable to ensure the regex is compiled only on its first use.

Complexity: 1/5
good first issue performance