Description
A duplicate declaration of the BLOCKQUOTE_RE static variable was identified during code review of PR #147. The variable was declared twice:
- Lines 36-39: Using
lazy_regex! macro (correct version)
- Lines 49-50: Using
LazyLock::new (duplicate to be removed)
This duplication would have caused a compilation error due to redeclaring the same static variable.
Resolution
✅ Resolved in commit 28908d7
References
Impact
- Severity: High (compilation error)
- Status: Fixed
- Detection: Automated code review
Description
A duplicate declaration of the
BLOCKQUOTE_REstatic variable was identified during code review of PR #147. The variable was declared twice:lazy_regex!macro (correct version)LazyLock::new(duplicate to be removed)This duplication would have caused a compilation error due to redeclaring the same static variable.
Resolution
✅ Resolved in commit 28908d7
References
Impact