Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,7 @@ If you find AgentQL helpful, please consider giving us a star on GitHub! It help
## Get in touch

For questions, feedback, or support, join our [Discord community](https://discord.gg/agentql). You can follow us on [GitHub](https://github.com/tinyfish-io/), [Twitter](https://x.com/AgentQL), and [LinkedIn](https://www.linkedin.com/company/95728009)!

---

*This is a test change for demonstrating CodeRabbit integration.*
Comment on lines +98 to +100
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix markdown emphasis style to use underscore.

Line 100 uses asterisks for emphasis (*text*) but the configured linting rule expects underscores (_text_). This is a minor style inconsistency flagged by markdownlint-cli2 (MD049).

Apply this diff to align with the configured emphasis style:

 ---
-*This is a test change for demonstrating CodeRabbit integration.*
+_This is a test change for demonstrating CodeRabbit integration._
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
---
*This is a test change for demonstrating CodeRabbit integration.*
---
_This is a test change for demonstrating CodeRabbit integration._
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

100-100: Emphasis style
Expected: underscore; Actual: asterisk

(MD049, emphasis-style)


100-100: Emphasis style
Expected: underscore; Actual: asterisk

(MD049, emphasis-style)

🤖 Prompt for AI Agents
In README.md around lines 98 to 100 the emphasis is written with asterisks
("*This is a test change for demonstrating CodeRabbit integration.*") but the
project's markdown lint expects underscores; change the emphasized text to use
underscores instead (e.g., "_This is a test change for demonstrating CodeRabbit
integration._") so the file conforms to MD049.