Fixed your readme.md formatting. <3#1
Fixed your readme.md formatting. <3#1rachits999003 wants to merge 4 commits intoMayurUghade03:mainfrom
Conversation
Update README with project structure and JDBC learnings
There was a problem hiding this comment.
Pull request overview
This PR improves the README.md formatting by properly structuring code blocks, converting inline comments to proper markdown syntax, and adding appropriate section headings. The changes enhance readability and ensure proper markdown rendering.
Changes:
- Added proper markdown code block delimiters (backticks) around SQL examples and project structure
- Converted CRUD operations from inline text to a properly formatted SQL code block with comments
- Converted "Key JDBC Learnings" from inline comments to a proper heading with bullet list
- Added markdown section headings (##) for "Ideal For" and "Author" sections
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| UPDATE students SET marks = ? WHERE id = ?; | ||
|
|
||
| ❌ Delete Data | ||
| -- Delete Data |
There was a problem hiding this comment.
There's an extra space before "Delete". This should be "-- ❌ Delete Data" with a single space after the emoji for consistency with the other comment lines.
| -- Delete Data | |
| -- ❌ Delete Data |
| >Forgetting to set values for ? | ||
|
|
||
| 🎯 Ideal For | ||
| ## Ideal For |
There was a problem hiding this comment.
This section title is missing the emoji that was present in the original. Consider adding "🎯" before "Ideal For" to maintain consistency with other section headers in the document.
| ## Ideal For | |
| ## 🎯 Ideal For |
|
|
||
|
|
||
|
|
||
| ## Author |
There was a problem hiding this comment.
This section title is missing the emoji that was present in the original. Consider adding "👨💻" before "Author" to maintain consistency with other section headers in the document.
| ## Author | |
| ## 👨💻 Author |
| ➕ | ||
|
|
||
| ```sql | ||
| -- Insert Data |
There was a problem hiding this comment.
The emoji is separated from the section title. It should be part of a comment line like "-- ➕ Insert Data" for consistency with the other operations in this SQL code block.
| ➕ | |
| ```sql | |
| -- Insert Data | |
| ```sql | |
| -- ➕ Insert Data |
| SELECT * FROM students; | ||
|
|
||
| ✏ Update Data | ||
| -- Update Data |
There was a problem hiding this comment.
The emoji is missing from the comment. This should be "-- ✏ Update Data" to match the formatting pattern and maintain consistency with other operations.
| -- Update Data | |
| -- ✏ Update Data |
Fix formatting issues in README.md
No description provided.