将 GitHub 下载计数标记添加到自述文件 Markdown
Adding GitHub Download Count Badge to Readme Mark Down
我想添加一个徽章,用于计算我在 GitHub 上的一个项目的下载总数。我看到了这个包含所有图像屏蔽的页面
![Github
Releases](https://img.shields.io/github/downloads/atom/atom/latest/total.svg?style=plastic)
关于如何将其添加到我在 GitHub 中的项目的任何想法?
您必须将其作为图像插入 README
。如果你的 README
是 markdown (README.md) 那应该是这样的:
语法:
[![Github All Releases](https://img.shields.io/github/downloads/<-- User Name-->/<-- Your Repo Name-->/total.svg)]()
示例
[![Github All Releases](https://img.shields.io/github/downloads/atom/atom/total.svg)]()
如果您点击 shields.io 上的标志,您可以复制粘贴您需要插入的降价语法 README.md
查看 PePy 以获取存储库的下载计数和徽章代码。这是一个例子:
我想添加一个徽章,用于计算我在 GitHub 上的一个项目的下载总数。我看到了这个包含所有图像屏蔽的页面
![Github Releases](https://img.shields.io/github/downloads/atom/atom/latest/total.svg?style=plastic)
关于如何将其添加到我在 GitHub 中的项目的任何想法?
您必须将其作为图像插入 README
。如果你的 README
是 markdown (README.md) 那应该是这样的:
语法:
[![Github All Releases](https://img.shields.io/github/downloads/<-- User Name-->/<-- Your Repo Name-->/total.svg)]()
示例
[![Github All Releases](https://img.shields.io/github/downloads/atom/atom/total.svg)]()
如果您点击 shields.io 上的标志,您可以复制粘贴您需要插入的降价语法 README.md
查看 PePy 以获取存储库的下载计数和徽章代码。这是一个例子: