You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently, both the star icon and the GitHub icon on the navbar direct the user to the same page, making the presence of two distinct icons redundant.
Describe the solution you'd like
Instead of displaying only the star icon, consider incorporating the GitHub star count as well. Alternatively, clicking on the icon could directly add a star to the repository.
This functionality can be effortlessly achieved by utilizing GitHub's Star Button with a few lines of code:
Example HTML Code:
<aclass="github-button" href="https://github.com/YOUR_USERNAME/YOUR_REPO" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star YOUR_REPO on GitHub">Star</a><scriptasyncdefersrc="https://buttons.github.io/buttons.js"></script>
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently, both the star icon and the GitHub icon on the navbar direct the user to the same page, making the presence of two distinct icons redundant.
Describe the solution you'd like
Instead of displaying only the star icon, consider incorporating the GitHub star count as well. Alternatively, clicking on the icon could directly add a star to the repository.
This functionality can be effortlessly achieved by utilizing GitHub's Star Button with a few lines of code:
Example HTML Code:
The text was updated successfully, but these errors were encountered: