Conversation
Reviewer's GuideThe PR enhances HTML table detection by replacing basic substring checks with case-insensitive regex patterns for Sequence Diagram: HTML Table Start Detection in
|
| Change | Details | Files |
|---|---|---|
| Use case-insensitive regexes for table tag detection |
|
src/lib.rs |
| Add tests for tables with attributes and varied casing |
|
tests/integration.rs |
| Document updated tag-matching behavior |
|
docs/html-table-support.md |
Possibly linked issues
- Update CLI docs and concurrency section #123: PR improves HTML table detection using regex for attributes, uppercase, mixed case.
- #0: The PR implements case-insensitive regex matching for HTML table tags, directly fixing the issue's stated problem.
Tips and commands
Interacting with Sourcery
- Trigger a new review: Comment
@sourcery-ai reviewon the pull request. - Continue discussions: Reply directly to Sourcery's review comments.
- Generate a GitHub issue from a review comment: Ask Sourcery to create an
issue from a review comment by replying to it. You can also reply to a
review comment with@sourcery-ai issueto create an issue from it. - Generate a pull request title: Write
@sourcery-aianywhere in the pull
request title to generate a title at any time. You can also comment
@sourcery-ai titleon the pull request to (re-)generate the title at any time. - Generate a pull request summary: Write
@sourcery-ai summaryanywhere in
the pull request body to generate a PR summary at any time exactly where you
want it. You can also comment@sourcery-ai summaryon the pull request to
(re-)generate the summary at any time. - Generate reviewer's guide: Comment
@sourcery-ai guideon the pull
request to (re-)generate the reviewer's guide at any time. - Resolve all Sourcery comments: Comment
@sourcery-ai resolveon the
pull request to resolve all Sourcery comments. Useful if you've already
addressed all the comments and don't want to see them anymore. - Dismiss all Sourcery reviews: Comment
@sourcery-ai dismisson the pull
request to dismiss all existing Sourcery reviews. Especially useful if you
want to start fresh with a new review - don't forget to comment
@sourcery-ai reviewto trigger a new review!
Customizing Your Experience
Access your dashboard to:
- Enable or disable review features such as the Sourcery-generated pull request
summary, the reviewer's guide, and others. - Change the review language.
- Add, remove or edit custom review instructions.
- Adjust other review settings.
Getting Help
- Contact our support team for questions or feedback.
- Visit our documentation for detailed guides and information.
- Keep in touch with the Sourcery team by following us on X/Twitter, LinkedIn or GitHub.
|
Warning Rate limit exceeded@leynos has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 17 minutes and 38 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (3)
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #18 +/- ##
==========================================
+ Coverage 74.37% 78.03% +3.65%
==========================================
Files 2 2
Lines 160 264 +104
==========================================
+ Hits 119 206 +87
- Misses 41 58 +17 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Docstrings generation was requested by @leynos. * #18 (comment) The following files were modified: * `src/lib.rs` * `tests/integration.rs`
|
Note Generated docstrings for this pull request at #19 |
Summary
<table>tags with attributes or mixed casingTesting
cargo fmt -- --checkcargo clippy -- -D warningscargo testmarkdownlint "**/*.md" | head -n 20nixie docshttps://chatgpt.com/codex/tasks/task_e_684cd07b681c8322a960b83aa1cbdfd1
Summary by Sourcery
Improve HTML table detection to handle case-insensitive tags and attributes, and add corresponding tests and documentation.
Enhancements:
<table>and</table>tags regardless of casing or attributesDocumentation:
Tests: