Michael Currin

Results 245 comments of Michael Currin

Follow button docs https://developer.twitter.com/en/docs/twitter-for-websites/follow-button/overview

Example - URL: https://michaelcurrin.github.io/badge-generator/ - Title: Badge Generator - Description: Magically generate custom badges that you can paste in your docs - Hashtags: vue github documentation readme code Using https://www.sociallinkgenerator.com...

Just issues one is needed. Note it is similar to Stars as a counter

[![GitHub Issues](https://img.shields.io/github/issues/acch/ansible-boilerplate.svg?)]() Not good as social style badge. [![GitHub Stars](https://img.shields.io/github/issues/acch/ansible-boilerplate.svg?style=social)]() [![GitHub Issues](https://img.shields.io/github/stars/acch/ansible-boilerplate.svg?style=social)]() Here was the workaround by ansible. [![GitHub Stars](https://img.shields.io/github/stars/acch/ansible-boilerplate.svg?label=github%20%E2%98%85)](h)

Fixed and dynamic badges

```md [![Made with Vue](https://img.shields.io/github/package-json/dependency-version/MichaelCurrin/vue-js-quickstart/vue)](https://www.npmjs.com/package/vue) ``` [![Made with Vue](https://img.shields.io/github/package-json/dependency-version/MichaelCurrin/vue-js-quickstart/vue)](https://www.npmjs.com/package/vue) Handle versioned And latest - use`@latest` in the npm package shield or just type latest in a plain badge? and not locked....

Getting latest from NPM and showing the version. This makes sense where you have the latest version your HTML and not a locked package. ```md [![Made with latest Docsify](https://img.shields.io/npm/v/docsify?label=docsify)](https://docsify.js.org/) ```...

Even with #19, the `latest` option without using package file can help. Maybe literal _foo - latest_ Or point to NPM and it will show you the version in your...

Low priority. More important for package owners than linking to external packages

New logic is needed to use the last part for the dependency name, or the last two parts, but exclude GitHub, even though it won't always be there Sample ```js...