Reputation:
I'm trying to show used languages with GitHub README.md stats:
![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=myusername&theme=tokyonight)
but private and public repositories are mostly C#, which is not shown:
Upvotes: 8
Views: 24608
Reputation: 404
Upvotes: 2
Reputation: 181
Copy-paste this code into your readme and change the links.
Endpoint: api/top-langs?username=anuraghazra
[![Top Langs](https://github-readme-stats-git-masterrstaa-rickstaa.vercel.app/api/top-langs/?username=anuraghazra)](https://github.com/anuraghazra/github-readme-stats)
You can use ?exclude_repo=repo1,repo2 parameter to exclude individual repositories.
After username add &theme=dracula to theme.
Visit https://github.com/anuraghazra/github-readme-stats
Upvotes: 5
Reputation: 8663
Try to hide
the current statistics from you to see if you have what you expected in the new result. JS
may have been libraries, so they took up most of your statistics just like the generated HTML
.
![Top Langs](https://github-readme-stats.vercel.app/api/top-langs/?username=myusername&hide=javascript,css,scss,html&theme=tokyonight)
Upvotes: 7