컴퓨터 공학
[Github] most used languages 원하는 언어 숨기기
Tifo
2025. 7. 2. 09:57
most used languages는 github에서 사용한 언어를 통계하여 보여주는 플러그인이다.
민낯 없이 모든 언어를 보여주는 것도 좋지만 .gitignore로 미처 숨기지 못한 언어까지 보여주는 건 사양이다
(내 경우에는 CMake와 렌파이였다....)
여기서 원하는 언어를 숨기는 방법이 있다.
원래 코드:
https://github-readme-stats.vercel.app/api/top-langs/?username={사용자이름}&layout=compact&theme=light
여기에서 &hide={숨기고 싶은 언어}를 더하면 된다
https://github-readme-stats.vercel.app/api/top-langs/?username={사용자 이름}&layout=compact&theme=light&hide={숨기고 싶은 언어}
.
여러 언어를 숨기고 싶으면 ,를 쓰면 된다.
https://github-readme-stats.vercel.app/api/top-langs/?username={사용자 이름}&layout=compact&theme=light&hide={숨기고 싶은 언어1},{숨기고 싶은 언어2}
다음과 같다.