-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New readme #183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New readme #183
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR restructures the README generation script to reorder sections and modify table layouts for better presentation. The changes prioritize Custom Chat Modes over Custom Instructions and consolidate install badges within title columns.
- Reorders the feature comparison table to highlight Custom Chat Modes first
- Removes separate install columns and integrates badges into title columns
- Changes section ordering in the generated README
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
| promptsContent += `| [${title}](${link})<br />${badges} | ${customDescription} |\n`; | ||
| } else { | ||
| promptsContent += `| [${title}](${link}) | | ${badges} |\n`; | ||
| promptsContent += `| [${title}](${link})<br />${badges} | | |\n`; |
Copilot
AI
Aug 14, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line creates a table row with 3 columns but the table header only has 2 columns. Remove the extra empty column separator to match the 2-column header format.
| promptsContent += `| [${title}](${link})<br />${badges} | | |\n`; | |
| promptsContent += `| [${title}](${link})<br />${badges} | |\n`; |
| chatmodesContent += `| [${title}](${link})<br />${badges} | ${customDescription} |\n`; | ||
| } else { | ||
| chatmodesContent += `| [${title}](${link}) | | ${badges} |\n`; | ||
| chatmodesContent += `| [${title}](${link})<br />${badges} | | |\n`; |
Copilot
AI
Aug 14, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line creates a table row with 3 columns but the table header only has 2 columns. Remove the extra empty column separator to match the 2-column header format.
| chatmodesContent += `| [${title}](${link})<br />${badges} | | |\n`; | |
| chatmodesContent += `| [${title}](${link})<br />${badges} | |\n`; |
No description provided.