├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README.rst └── _config.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: Naereen # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Lilian Besson (Naereen), https://github.com/Naereen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # Makefile to send this project to Zam 2 | SHELL=/usr/bin/env /bin/bash 3 | 4 | all: send 5 | 6 | send: send_zamok 7 | send_zamok: 8 | CP --exclude=.git ./ ${Szam}publis/badges.git/ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # List of Badges, in Markdown 2 | A list of badges, with their Markdown code, that can be included in a `README.md` file for a GitHub or Bitbucket project. 3 | 4 | > The same file for [reStructuredText](http://docutils.sourceforge.net/rst.html) code is available here: [README.rst](README.rst). 5 | 6 |
7 | Table of content 8 | 9 | ## Table of content 10 | - [List of Badges, in Markdown](#list-of-badges-in-markdown) 11 | - [Table of content](#table-of-content) 12 | - [Generic](#generic) 13 | - [Useful](#useful) 14 | - [Maintained?](#maintained) 15 | - [Website up/down](#website-updown) 16 | - [Feedback](#feedback) 17 | - [*"Ask me anything"* in English](#ask-me-anything-in-english) 18 | - [*"Demandez moi n'importe quoi"* in French](#demandez-moi-nimporte-quoi-in-french) 19 | - [Python related](#python-related) 20 | - [Jupyter Notebook](#jupyter-notebook) 21 | - [Google Collab](#google-collab) 22 | - [Binder](#binder) 23 | - [Go related](#go-related) 24 | - [Rust related](#rust-related) 25 | - [Nix related](#nix-related) 26 | - [Markdown related](#markdown-related) 27 | - [LaTeX related](#latex-related) 28 | - [PyPI downloads](#pypi-downloads) 29 | - [PyPI version](#pypi-version) 30 | - [PyPI license](#pypi-license) 31 | - [PyPI format](#pypi-format) 32 | - [PyPI python versions](#pypi-python-versions) 33 | - [PyPI implementation](#pypi-implementation) 34 | - [PyPI status](#pypi-status) 35 | - [JavaScript related](#javascript-related) 36 | - [JSDelivr downloads](#jsdelivr--downloads) 37 | - [GNU Bash related](#gnu-bash-related) 38 | - [Microsoft Visual Studio Code related](#microsoft-visual-studio-code-related) 39 | - [Read the Docs status](#read-the-docs-status) 40 | - [GitHub related](#github-related) 41 | - [GitHub license](#github-license) 42 | - [GitHub versions/tags/commits](#github-versionstagscommits) 43 | - [GitHub downloads](#github-downloads) 44 | - [GitHub forks](#github-forks) 45 | - [GitHub stars](#github-stars) 46 | - [GitHub Stargazers over time](#github-stargazers-over-time) 47 | - [GitHub watchers](#github-watchers) 48 | - [GitHub followers](#github-followers) 49 | - [GitHub contributors](#github-contributors) 50 | - [GitHub issues](#github-issues) 51 | - [GitHub Pull Requests](#github-pull-requests) 52 | - [GitHub Make a Pull Requests](#github-make-a-pull-requests) 53 | - [GitHub version](#github-version) 54 | - [GitHub Profile](#github-profile) 55 | - [GitHub Stars Sparklines](#github-stars-sparklines) 56 | - [Bitbucket related](#bitbucket-related) 57 | - [Bitbucket issues](#bitbucket-issues) 58 | - [PackageControl related](#packagecontrol-related) 59 | - [Licenses](#licenses) 60 | - [MIT License](#mit-license) 61 | - [GPLv3 License](#gplv3-license) 62 | - [Unlicense](#unlicense) 63 | - [Creative Commons Licenses](#creative-commons-licenses) 64 | - [Simple Icons](#simple-icons) 65 | - [Open-Source](#open-source) 66 | - [Meta badges ?!](#meta-badges-) 67 | - [DOI and Zenodo](#doi-and-zenodo) 68 | - [DOI Citations](#doi-citations) 69 | - [Discord](#discord) 70 | - [Jetbrains](#jetbrains) 71 | - [Say thanks](#say-thanks) 72 | - [Custom Logo](#custom-logo) 73 | - [Random](#random) 74 | - [Ages 20-30...](#ages-20-30) 75 | - [Twitting](#twitting) 76 | - [Built by...](#built-by) 77 | - [Built with...](#built-with) 78 | - [Uses...](#uses) 79 | - [Fun](#fun) 80 | - [References ? :notebook:](#references--notebook) 81 | - [TODO :boom: ?](#todo-boom-) 82 | - [Issues :sweat_drops:](#issues-sweat_drops) 83 | - [Possible TODO? :light_rail:](#possible-todo-light_rail) 84 | - [License ? :scroll: ![GitHub license](https://github.com/Naereen/badges/blob/master/LICENSE)](#license--scroll-) 85 |
86 | 87 | ---- 88 | 89 | ## Generic 90 | [![Generic badge](https://img.shields.io/badge/--.svg)](https://shields.io/) 91 | ```markdown 92 | [![Generic badge](https://img.shields.io/badge/--.svg)](https://shields.io/) 93 | ``` 94 | 95 | ---- 96 | 97 | ## Useful 98 | ### Maintained? 99 | Maintained: [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) 100 | ```markdown 101 | [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity) 102 | ``` 103 | 104 | Maintainer: ![Maintaner](https://img.shields.io/badge/maintainer-theMaintainer-blue) 105 | ```markdown 106 | ![Maintainer](https://img.shields.io/badge/maintainer-theMaintainer-blue) 107 | ``` 108 | 109 | Not maintained: [![Maintenance](https://img.shields.io/badge/Maintained%3F-no-red.svg)](https://bitbucket.org/lbesson/ansi-colors) 110 | ```markdown 111 | [![Maintenance](https://img.shields.io/badge/Maintained%3F-no-red.svg)](https://bitbucket.org/lbesson/ansi-colors) 112 | ``` 113 | 114 | Worse: [![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/) 115 | ``` 116 | [![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/) 117 | ``` 118 | 119 | ### [Website up/down](http://isup.me/) 120 | [![Website shields.io](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](http://shields.io/) 121 | ```markdown 122 | [![Website shields.io](https://img.shields.io/website-up-down-green-red/http/shields.io.svg)](http://shields.io/) 123 | ``` 124 | 125 | [![Website monip.org](https://img.shields.io/website-up-down-green-red/http/monip.org.svg)](http://monip.org/) 126 | ```markdown 127 | [![Website monip.org](https://img.shields.io/website-up-down-green-red/http/monip.org.svg)](http://monip.org/) 128 | ``` 129 | 130 | [![Website perso.crans.org](https://img.shields.io/website-up-down-green-red/https/perso.crans.org.svg)](https://perso.crans.org/) 131 | ```markdown 132 | [![Website perso.crans.org](https://img.shields.io/website-up-down-green-red/https/perso.crans.org.svg)](https://perso.crans.org/) 133 | ``` 134 | 135 | [![Website naereen.github.io](https://img.shields.io/website-up-down-green-red/https/naereen.github.io.svg)](https://naereen.github.io/) 136 | ```markdown 137 | [![Website naereen.github.io](https://img.shields.io/website-up-down-green-red/https/naereen.github.io.svg)](https://naereen.github.io/) 138 | ``` 139 | 140 | [![Website lbesson.bitbucket.io](https://img.shields.io/website-up-down-green-red/https/lbesson.bitbucket.io.svg)](https://lbesson.bitbucket.io/) 141 | ```markdown 142 | [![Website lbesson.bitbucket.io](https://img.shields.io/website-up-down-green-red/https/lbesson.bitbucket.io.svg)](https://lbesson.bitbucket.io/) 143 | ``` 144 | 145 | [![Website cv.lbesson.qc.to](https://img.shields.io/website-up-down-green-red/http/cv.lbesson.qc.to.svg)](http://cv.lbesson.qc.to/) 146 | ```markdown 147 | [![Website cv.lbesson.qc.to](https://img.shields.io/website-up-down-green-red/http/cv.lbesson.qc.to.svg)](http://cv.lbesson.qc.to/) 148 | ``` 149 | 150 | [![Website fakesite.invalid](https://img.shields.io/website-up-down-green-red/http/fakesite.invalid.svg)](http://fakesite.invalid/) 151 | ```markdown 152 | [![Website fakesite.invalid](https://img.shields.io/website-up-down-green-red/http/fakesite.invalid.svg)](http://fakesite.invalid/) 153 | ``` 154 | 155 | ---- 156 | 157 | ## Feedback 158 | ### *"Ask me anything"* in English 159 | [![Ask Me Anything !](https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg)](https://GitHub.com/Naereen/ama) 160 | ```markdown 161 | [![Ask Me Anything !](https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg)](https://GitHub.com/Naereen/ama) 162 | ``` 163 | 164 | ### *"Demandez moi n'importe quoi"* in French 165 | [![Demandez moi n'importe quoi !](https://img.shields.io/badge/Demandez%20moi-n'%20importe%20quoi-1abc9c.svg)](https://GitHub.com/Naereen/ama.fr) 166 | ```markdown 167 | [![Demandez moi n'importe quoi !](https://img.shields.io/badge/Demandez%20moi-n'%20importe%20quoi-1abc9c.svg)](https://GitHub.com/Naereen/ama.fr) 168 | ``` 169 | 170 | ---- 171 | 172 | ## [Python](https://www.python.org/) related 173 | [![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/) 174 | ```markdown 175 | [![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/) 176 | ``` 177 | 178 | [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) 179 | ```markdown 180 | [![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)](https://www.python.org/) 181 | ``` 182 | 183 | [![made-with-sphinx-doc](https://img.shields.io/badge/Made%20with-Sphinx-1f425f.svg)](https://www.sphinx-doc.org/) 184 | ```markdown 185 | [![made-with-sphinx-doc](https://img.shields.io/badge/Made%20with-Sphinx-1f425f.svg)](https://www.sphinx-doc.org/) 186 | ``` 187 | #### [Jupyter Notebook](https://jupyter.org) 188 | [![Made with Jupyter](https://img.shields.io/badge/Made%20with-Jupyter-orange?style=for-the-badge&logo=Jupyter)](https://jupyter.org/try) 189 | ```markdown 190 | [![Made withJupyter](https://img.shields.io/badge/Made%20with-Jupyter-orange?style=for-the-badge&logo=Jupyter)](https://jupyter.org/try) 191 | ``` 192 | 193 | #### [Google Collab](https://colab.research.google.com/notebooks/intro.ipynb) 194 | [![Open In Collab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Naereen/badges) 195 | ```markdown 196 | [![Open In Collab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Naereen/badges) 197 | ``` 198 | 199 | #### [Binder](https://mybinder.org/) 200 | [![Binder](https://mybinder.org/badge_logo.svg) 201 | ](https://mybinder.org/v2/gh/Naereen/badges/master) 202 | ```markdown 203 | [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Naereen/badges/master) 204 | ``` 205 | ---- 206 | 207 | ## [Go](https://go.dev/) related 208 | 209 | [![forthebadge made-with-go](http://ForTheBadge.com/images/badges/made-with-go.svg)](https://go.dev/) 210 | ```markdown 211 | [![forthebadge made-with-go](http://ForTheBadge.com/images/badges/made-with-go.svg)](https://go.dev/) 212 | ``` 213 | 214 | [![made-with-Go](https://img.shields.io/badge/Made%20with-Go-1f425f.svg)](https://go.dev/) 215 | ```markdown 216 | [![made-with-Go](https://img.shields.io/badge/Made%20with-Go-1f425f.svg)](https://go.dev/) 217 | ``` 218 | 219 | GitHub go.mod Go version (`/github/go-mod/go-version/:user/:repo`): 220 | [![GitHub go.mod Go version of a Go module](https://img.shields.io/github/go-mod/go-version/gomods/athens.svg)](https://github.com/gomods/athens) 221 | ```markdown 222 | [![GitHub go.mod Go version of a Go module](https://img.shields.io/github/go-mod/go-version/gomods/athens.svg)](https://github.com/gomods/athens) 223 | ``` 224 | 225 | GoDoc reference (`godoc.org/:user/go/:repo`): 226 | [![GoDoc reference example](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/nanomsg.org/go/mangos/v2) 227 | ```markdown 228 | [![GoDoc reference example](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/nanomsg.org/go/mangos/v2) 229 | ``` 230 | 231 | [GoReportCard](https://goreportcard.com/) (`goreportcard.com/badge/github.com/:user/:repo`): 232 | [![GoReportCard example](https://goreportcard.com/badge/github.com/nanomsg/mangos)](https://goreportcard.com/report/github.com/nanomsg/mangos) 233 | ```markdown 234 | [![GoReportCard example](https://goreportcard.com/badge/github.com/nanomsg/mangos)](https://goreportcard.com/report/github.com/nanomsg/mangos) 235 | ``` 236 | 237 | ---- 238 | 239 | ## [Rust](https://www.rust-lang.org/) related 240 | 241 | [![forthebadge made-with-rust](http://ForTheBadge.com/images/badges/made-with-rust.svg)](https://www.rust-lang.org/) 242 | ```markdown 243 | [![forthebadge made-with-rust](http://ForTheBadge.com/images/badges/made-with-rust.svg)](https://www.rust-lang.org/) 244 | ``` 245 | 246 | [![made-with-rust](https://img.shields.io/badge/Made%20with-Rust-1f425f.svg)](https://www.rust-lang.org/) 247 | ```markdown 248 | [![made-with-rust](https://img.shields.io/badge/Made%20with-Rust-1f425f.svg)](https://www.rust-lang.org/) 249 | ``` 250 | 251 | ## [Nix](https://www.nixos.org/) related 252 | 253 | [![Built with Nix badge](https://img.shields.io/badge/Built_With-Nix-5277C3.svg?logo=nixos&labelColor=73C3D5)](https://www.nixos.org/) 254 | ```markdown 255 | [![Built with Nix badge](https://img.shields.io/badge/Built_With-Nix-5277C3.svg?logo=nixos&labelColor=73C3D5)](https://www.nixos.org/) 256 | ``` 257 | ---- 258 | 259 | ## [Markdown](http://commonmark.org) related 260 | 261 | [![made-with-Markdown](https://img.shields.io/badge/Made%20with-Markdown-1f425f.svg)](http://commonmark.org) 262 | ```markdown 263 | [![made-with-Markdown](https://img.shields.io/badge/Made%20with-Markdown-1f425f.svg)](http://commonmark.org) 264 | ``` 265 | 266 | [![made-with-StrapDown.js](https://img.shields.io/badge/Made%20with-StrapDown.js-1f425f.svg)](https://GitHub.com/Naereen/StrapDown.js/) 267 | ```markdown 268 | [![made-with-StrapDown.js](https://img.shields.io/badge/Made%20with-StrapDown.js-1f425f.svg)](https://GitHub.com/Naereen/StrapDown.js/) 269 | ``` 270 | 271 | ---- 272 | 273 | ## [LaTeX](https://www.latex-project.org/) related 274 | 275 | [![made-with-latex](https://img.shields.io/badge/Made%20with-LaTeX-1f425f.svg)](https://www.latex-project.org/) 276 | ```markdown 277 | [![made-with-latex](https://img.shields.io/badge/Made%20with-LaTeX-1f425f.svg)](https://www.latex-project.org/) 278 | ``` 279 | 280 | [![made-with-mathjax](https://img.shields.io/badge/Made%20with-MathJax-1f425f.svg)](https://www.mathjax.org/) 281 | ```markdown 282 | [![made-with-mathjax](https://img.shields.io/badge/Made%20with-MathJax-1f425f.svg)](https://www.mathjax.org/) 283 | ``` 284 | 285 | ---- 286 | 287 | ### [PyPI](https://pypi.python.org/) downloads 288 | 289 | [![PyPI download month](https://img.shields.io/pypi/dm/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 290 | ```markdown 291 | [![PyPI download month](https://img.shields.io/pypi/dm/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 292 | ``` 293 | 294 | [![PyPI download week](https://img.shields.io/pypi/dw/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 295 | ```markdown 296 | [![PyPI download week](https://img.shields.io/pypi/dw/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 297 | ``` 298 | 299 | [![PyPI download day](https://img.shields.io/pypi/dd/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 300 | ```markdown 301 | [![PyPI download day](https://img.shields.io/pypi/dd/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 302 | ``` 303 | 304 | ### [PyPI](https://pypi.python.org/) version 305 | [![PyPI version fury.io](https://badge.fury.io/py/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 306 | ```markdown 307 | [![PyPI version fury.io](https://badge.fury.io/py/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 308 | ``` 309 | [![PyPi version](https://badgen.net/pypi/v/pip/)](https://pypi.org/project/pip) 310 | ```markdown 311 | [![PyPi version](https://badgen.net/pypi/v/pip/)](https://pypi.org/project/pip) 312 | ``` 313 | 314 | [![PyPI version shields.io](https://img.shields.io/pypi/v/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 315 | ```markdown 316 | [![PyPI version shields.io](https://img.shields.io/pypi/v/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 317 | ``` 318 | 319 | ### [PyPI](https://pypi.python.org/) license 320 | [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 321 | ```markdown 322 | [![PyPI license](https://img.shields.io/pypi/l/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 323 | ``` 324 | [![PyPi license](https://badgen.net/pypi/license/pip/)](https://pypi.org/project/pip/) 325 | ```markdown 326 | [![PyPi license](https://badgen.net/pypi/license/pip/)](https://pypi.org/project/pip/) 327 | ``` 328 | 329 | 330 | ### [PyPI](https://pypi.python.org/) format 331 | [![PyPI format](https://img.shields.io/pypi/format/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 332 | ```markdown 333 | [![PyPI format](https://img.shields.io/pypi/format/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 334 | ``` 335 | 336 | ### [PyPI](https://pypi.python.org/) python versions 337 | [![PyPI pyversions](https://img.shields.io/pypi/pyversions/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 338 | ```markdown 339 | [![PyPI pyversions](https://img.shields.io/pypi/pyversions/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 340 | ``` 341 | 342 | ### [PyPI](https://pypi.python.org/) implementation 343 | [![PyPI implementation](https://img.shields.io/pypi/implementation/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 344 | ```markdown 345 | [![PyPI implementation](https://img.shields.io/pypi/implementation/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 346 | ``` 347 | 348 | ### [PyPI](https://pypi.python.org/) status 349 | [![PyPI status](https://img.shields.io/pypi/status/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 350 | ```markdown 351 | [![PyPI status](https://img.shields.io/pypi/status/ansicolortags.svg)](https://pypi.python.org/pypi/ansicolortags/) 352 | ``` 353 | 354 | ---- 355 | 356 | ## [JavaScript](https://www.javascript.com) related 357 | 358 | [![made-with-javascript](https://img.shields.io/badge/Made%20with-JavaScript-1f425f.svg)](https://www.javascript.com) 359 | ```markdown 360 | [![made-with-javascript](https://img.shields.io/badge/Made%20with-JavaScript-1f425f.svg)](https://www.javascript.com) 361 | ``` 362 | 363 | ### [JSDelivr](https://www.jsdelivr.com/) downloads 364 | 365 | [![JSDelivr CDN](https://data.jsdelivr.com/v1/package/gh/jquery/jquery/badge?style=rounded)](https://www.jsdelivr.com/package/gh/jquery/jquery) 366 | ```markdown 367 | [![JSDelivr CDN](https://data.jsdelivr.com/v1/package/gh///badge?style=rounded)](https://www.jsdelivr.com/package/gh//) 368 | ``` 369 | 370 | [![jsDelivr CDN](https://img.shields.io/jsdelivr/gh/hm/jquery/jquery)](https://www.jsdelivr.com/package/gh/jquery/jquery) 371 | ```markdown 372 | [![jsDelivr CDN](https://img.shields.io/jsdelivr/gh/hm//)](https://www.jsdelivr.com/package/gh//) 373 | ``` 374 | [![jsDelivr rank](https://badgen.net/jsdelivr/rank/npm/lodash)](https://www.jsdelivr.com/) 375 | ```markdown 376 | [![jsDelivr rank](https://badgen.net/jsdelivr/rank/npm/lodash)](https://www.jsdelivr.com/) 377 | ``` 378 | ### [Npm](https://npmjs.com) version 379 | 380 | [![Npm package version](https://badgen.net/npm/v/express)](https://npmjs.com/package/express) 381 | ````markdown 382 | [![Npm package version](https://badgen.net/npm/v/express)](https://npmjs.com/package/express) 383 | ```` 384 | 385 | ### [Npm](https://npmjs.com) downloads 386 | 387 | [![Npm package yearly downloads](https://badgen.net/npm/dy/express)](https://npmjs.com/package/express) 388 | ```markdown 389 | [![Npm package yearly downloads](https://badgen.net/npm/dy/express)](https://npmjs.com/package/express) 390 | ``` 391 | [![Npm package monthly downloads](https://badgen.net/npm/dm/express)](https://npmjs.com/package/express) 392 | ```markdown 393 | [![Npm package monthly downloads](https://badgen.net/npm/dm/express)](https://npmjs.ccom/package/express) 394 | ``` 395 | [![Npm package daily downloads](https://badgen.net/npm/dd/express)](https://npmjs.com/package/express) 396 | ```markdown 397 | [![Npm package daily downloads](https://badgen.net/npm/dm/express)](https://npmjs.com/package/express) 398 | ``` 399 | [![Npm package total downloads](https://badgen.net/npm/dt/express)](https://npmjs.com/package/express) 400 | ```markdown 401 | [![Npm package total downloads](https://badgen.net/npm/dt/express)](https://npmjs.com/package/express) 402 | ``` 403 | ### Miscellaneous 404 | 405 | [![Minimum node.js version](https://badgen.net/npm/node/express)](https://npmjs.com/package/express) 406 | ```markdown 407 | [![Minimum node.js version](https://badgen.net/npm/node/express)](https://npmjs.com/package/express) 408 | ``` 409 | [![Npm package license](https://badgen.net/npm/license/discord.js)](https://npmjs.com/package/discord.js) 410 | ```markdown 411 | [![Npm package license](https://badgen.net/npm/llicense/discord.js)](https://npmjs.com/package/discord.js) 412 | ``` 413 | [![Npm package dependents](https://badgen.net/npm/dependents/express)](https://npmjs.ccom/package/express) 414 | ```markdown 415 | [![Npm package dependents](https://badgen.net/npm/dependents/express)](https://npmjs.com/package/express) 416 | ``` 417 | 418 | ---- 419 | 420 | ## [GNU Bash](https://www.gnu.org/software/bash/) related 421 | 422 | [![Bash Shell](https://badges.frapsoft.com/bash/v1/bash.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 423 | ```markdown 424 | [![Bash Shell](https://badges.frapsoft.com/bash/v1/bash.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 425 | ``` 426 | 427 | [![made-with-bash](https://img.shields.io/badge/Made%20with-Bash-1f425f.svg)](https://www.gnu.org/software/bash/) 428 | ```markdown 429 | [![made-with-bash](https://img.shields.io/badge/Made%20with-Bash-1f425f.svg)](https://www.gnu.org/software/bash/) 430 | ``` 431 | 432 | ## [NuGet](https://nuget.org/) related 433 | 434 | [![NuGet stable version](https://badgen.net/nuget/v/newtonsoft.json)](https://nuget.org/packages/newtonsoft.json) 435 | ```markdown 436 | [![NuGet stable version](https://badgen.net/nuget/v/newtonsoft.json)](https://nuget.org/packages/newtonsoft.json) 437 | ``` 438 | [![NuGet pre version](https://badgen.net/nuget/v/newtonsoft.json/pre)](https://nuget.org/packages/newtonsoft.json) 439 | ```markdown 440 | [![NuGet pre version](https://badgen.net/nuget/v/newtonsoft.json/pre)](https://nuget.org/packages/newtonsoft.json) 441 | ``` 442 | [![NuGet latest version](https://badgen.net/nuget/v/newtonsoft.json/latest)](https://nuget.org/packages/newtonsoft.json) 443 | ```markdown 444 | [![NuGet latest version](https://badgen.net/nuget/v/newtonsoft.json/latest)](https://nuget.org/packages/newtonsoft.json) 445 | ``` 446 | 447 | ---- 448 | 449 | ## [Microsoft Visual Studio Code](https://marketplace.visualstudio.com/) related 450 | 451 | 467 | 468 | [![made-for-VSCode](https://img.shields.io/badge/Made%20for-VSCode-1f425f.svg)](https://code.visualstudio.com/) 469 | ```markdown 470 | [![made-for-VSCode](https://img.shields.io/badge/Made%20for-VSCode-1f425f.svg)](https://code.visualstudio.com/) 471 | ``` 472 | 473 | 479 | 480 | ---- 481 | 482 | ## [Read the Docs](https://readthedocs.org/) status 483 | [![Documentation Status](https://readthedocs.org/projects/ansicolortags/badge/?version=latest)](http://ansicolortags.readthedocs.io/?badge=latest) 484 | ```markdown 485 | [![Documentation Status](https://readthedocs.org/projects/ansicolortags/badge/?version=latest)](http://ansicolortags.readthedocs.io/?badge=latest) 486 | ``` 487 | 488 | ---- 489 | 490 | ## GitHub related 491 | ### GitHub license 492 | [![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE) 493 | ```markdown 494 | [![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE) 495 | ``` 496 | [![GitHub license](https://badgen.net/github/license/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE) 497 | ```markdown 498 | [![GitHub license](https://badgen.net/github/license/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE) 499 | ``` 500 | ### GitHub branches 501 | [![GitHub branches](https://badgen.net/github/branches/Naereen/Strapdown.js)](https://github.com/Naereen/Strapdown.js/) 502 | ```markdown 503 | [![GitHub branches](https://badgen.net/github/branches/Naereen/Strapdown.js)](https://github.com/Naereen/Strapdown.js/) 504 | ``` 505 | ### GitHub versions/tags/commits 506 | [![GitHub release](https://img.shields.io/github/release/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 507 | ```markdown 508 | [![GitHub release](https://img.shields.io/github/release/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 509 | ``` 510 | [![Latest release](https://badgen.net/github/release/Naereen/Strapdown.js)](https://github.com/Naereen/Strapdown.js/releases) 511 | ```markdown 512 | [![Latest release](https://badgen.net/github/release/Naereen/Strapdown.js)](https://github.com/Naereen/Strapdown.js/releases) 513 | ``` 514 | [![GitHub tag](https://img.shields.io/github/tag/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/tags/) 515 | ```markdown 516 | [![GitHub tag](https://img.shields.io/github/tag/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/tags/) 517 | ``` 518 | [![Github tag](https://badgen.net/github/tag/Naereen/Strapdown.js)](https://github.com/Naereen/Strapdown.js/tags/) 519 | ```markdown 520 | [![Github tag](https://badgen.net/github/tag/Naereen/Strapdown.js)](https://github.com/Naereen/Strapdown.js/tags/) 521 | ``` 522 | [![GitHub commits](https://img.shields.io/github/commits-since/Naereen/StrapDown.js/v1.0.0.svg)](https://GitHub.com/Naereen/StrapDown.js/commit/) 523 | ```markdown 524 | [![GitHub commits](https://img.shields.io/github/commits-since/Naereen/StrapDown.js/v1.0.0.svg)](https://GitHub.com/Naereen/StrapDown.js/commit/) 525 | ``` 526 | [![GitHub commits](https://badgen.net/github/commits/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/commit/) 527 | ```markdown 528 | [![GitHub commits](https://badgen.net/github/commits/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/commit/) 529 | ``` 530 | [![GitHub latest commit](https://badgen.net/github/last-commit/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/commit/) 531 | ```markdown 532 | [![GitHub latest commit](https://badgen.net/github/last-commit/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/commit/) 533 | ``` 534 | ### GitHub downloads 535 | [![Github all releases](https://img.shields.io/github/downloads/Naereen/StrapDown.js/total.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 536 | ```markdown 537 | [![Github all releases](https://img.shields.io/github/downloads/Naereen/StrapDown.js/total.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 538 | ``` 539 | 540 | [![Github releases (by release)](https://img.shields.io/github/downloads/Naereen/StrapDown.js/v1.0.0/total.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 541 | ```markdown 542 | [![Github Releases (by release)](https://img.shields.io/github/downloads/Naereen/StrapDown.js/v1.0.0/total.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 543 | ``` 544 | 545 | [![Github releases (by asset)](https://img.shields.io/github/downloads/Naereen/StrapDown.js/latest/strapdown.min.js)](https://GitHub.com/Naereen/StrapDown.js/releases/) 546 | ```markdown 547 | [![Github releases (by asset)](https://img.shields.io/github/downloads/Naereen/StrapDown.js/latest/strapdown.min.js)](https://GitHub.com/Naereen/StrapDown.js/releases/) 548 | ``` 549 | 550 | ### GitHub forks 551 | [![GitHub forks](https://img.shields.io/github/forks/Naereen/StrapDown.js.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Naereen/StrapDown.js/network/) 552 | ```markdown 553 | [![GitHub forks](https://img.shields.io/github/forks/Naereen/StrapDown.js.svg?style=social&label=Fork&maxAge=2592000)](https://GitHub.com/Naereen/StrapDown.js/network/) 554 | ``` 555 | [![GitHub forks](https://badgen.net/github/forks/Naereen/Strapdown.js/)](https://GitHub.com/Naereen/StrapDown.js/network/) 556 | ```markdown 557 | [![GitHub forks](https://badgen.net/github/forks/Naereen/Strapdown.js/)](https://GitHub.com/Naereen/StrapDown.js/network/) 558 | ``` 559 | ### GitHub stars 560 | [![GitHub stars](https://img.shields.io/github/stars/Naereen/StrapDown.js.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Naereen/StrapDown.js/stargazers/) 561 | ```markdown 562 | [![GitHub stars](https://img.shields.io/github/stars/Naereen/StrapDown.js.svg?style=social&label=Star&maxAge=2592000)](https://GitHub.com/Naereen/StrapDown.js/stargazers/) 563 | ``` 564 | [![GitHub stars](https://badgen.net/github/stars/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/stargazers/) 565 | ```markdown 566 | [![GitHub stars](https://badgen.net/github/stars/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/stargazers/) 567 | ``` 568 | 569 | 570 | ### GitHub Stargazers over time 571 | [![Stargazers over time](https://starchart.cc/Naereen/badges.svg)](https://starchart.cc/Naereen/badges) 572 | ```markdown 573 | [![Stargazers over time](https://starchart.cc/Naereen/badges.svg)](https://starchart.cc/Naereen/badges) 574 | ``` 575 | 576 | ### Github Contributors over time 577 | [![Contributors over time](https://contributor-graph-api.apiseven.com/contributors-svg?chart=contributorOverTime&repo=Naereen/badges)](https://www.apiseven.com/en/contributor-graph?chart=contributorOverTime&repo=Naereen/badges) 578 | ```markdown 579 | [![Contributors over time](https://contributor-graph-api.apiseven.com/contributors-svg?chart=contributorOverTime&repo=Naereen/badges)](https://www.apiseven.com/en/contributor-graph?chart=contributorOverTime&repo=Naereen/badges) 580 | ``` 581 | 582 | ### GitHub watchers 583 | [![GitHub watchers](https://img.shields.io/github/watchers/Naereen/StrapDown.js.svg?style=social&label=Watch&maxAge=2592000)](https://GitHub.com/Naereen/StrapDown.js/watchers/) 584 | ```markdown 585 | [![GitHub watchers](https://img.shields.io/github/watchers/Naereen/StrapDown.js.svg?style=social&label=Watch&maxAge=2592000)](https://GitHub.com/Naereen/StrapDown.js/watchers/) 586 | ``` 587 | [![GitHub watchers](https://badgen.net/github/watchers/Naereen/Strapdown.js/)](https://GitHub.com/Naereen/StrapDown.js/watchers/) 588 | ```markdown 589 | [![GitHub watchers](https://badgen.net/github/watchers/Naereen/Strapdown.js/)](https://GitHub.com/Naereen/StrapDown.js/watchers/) 590 | ``` 591 | 592 | ### GitHub followers 593 | [![GitHub followers](https://img.shields.io/github/followers/Naereen.svg?style=social&label=Follow&maxAge=2592000)](https://github.com/Naereen?tab=followers) 594 | ```markdown 595 | [![GitHub followers](https://img.shields.io/github/followers/Naereen.svg?style=social&label=Follow&maxAge=2592000)](https://github.com/Naereen?tab=followers) 596 | ``` 597 | 598 | ### GitHub contributors 599 | [![GitHub contributors](https://img.shields.io/github/contributors/Naereen/badges.svg)](https://GitHub.com/Naereen/badges/graphs/contributors/) 600 | ```markdown 601 | [![GitHub contributors](https://img.shields.io/github/contributors/Naereen/badges.svg)](https://GitHub.com/Naereen/badges/graphs/contributors/) 602 | ``` 603 | [![GitHub contributors](https://badgen.net/github/contributors/Naereen/Strapdown.js)](https://GitHub.com/Naereen/Strapdown.js/graphs/contributors/) 604 | ```markdown 605 | [![GitHub contributors](https://badgen.net/github/contributors/Naereen/Strapdown.js)](https://GitHub.com/Naereen/Strapdown.js/graphs/contributors/) 606 | ``` 607 | 608 | ### GitHub issues 609 | [![GitHub issues](https://img.shields.io/github/issues/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/issues/) 610 | ```markdown 611 | [![GitHub issues](https://img.shields.io/github/issues/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/issues/) 612 | ``` 613 | [![GitHub issues](https://badgen.net/github/issues/Naereen/Strapdown.js/)](https://GitHub.com/Naereen/StrapDown.js/issues/) 614 | ```markdown 615 | [![GitHub issues](https://badgen.net/github/issues/Naereen/Strapdown.js/)](https://GitHub.com/Naereen/StrapDown.js/issues/) 616 | ``` 617 | [![GitHub issues-open](https://badgen.net/github/open-issues/Naereen/StrapDown.js)](https://github.com/Naereen/StrapDown.js/issues?q=is%3Aopen) 618 | ```markdown 619 | [![GitHub issues-open](https://badgen.net/github/open-issues/Naereen/StrapDown.js)](https://github.com/Naereen/StrapDown.js/issues?q=is%3Aopen) 620 | ``` 621 | [![GitHub issues-closed](https://badgen.net/github/closed-issues/Naereen/StrapDown.js)](https://GitHub.com/Naereen/StrapDown.js/issues?q=is%3Aissue+is%3Aclosed) 622 | ```markdown 623 | [![GitHub issues-closed](https://img.shields.io/github/issues-closed/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/issues?q=is%3Aissue+is%3Aclosed) 624 | ``` 625 | [![GitHub issues-closed](https://badgen.net/github/closed-issues/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/issues?q=is%3Aclosed) 626 | ```markdown 627 | [![GitHub issues-closed](https://badgen.net/github/closed-issues/Naereen/Strapdow.js)](https://github.com/Naereen/StrapDown.js/issues?q=is%3Aclosed) 628 | ``` 629 | [![GitHub issues-closed](https://badgen.net/github/open-issues/Naereen/StrapDown.js)](https://GitHub.com/Naereen/StrapDown.js/issues?q=is%3Aissue+is%3Aopen) 630 | ```markdown 631 | [![GitHub issues-open](https://img.shields.io/github/issues-open/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/issues?q=is%3Aissue+is%3Aopen) 632 | ``` 633 | From [isitmaintained.com](http://isitmaintained.com): 634 | 635 | [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/Naereen/badges.svg)](http://isitmaintained.com/project/Naereen/badges "Average time to resolve an issue") 636 | ```markdown 637 | [![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/Naereen/badges.svg)](http://isitmaintained.com/project/Naereen/badges "Average time to resolve an issue") 638 | ``` 639 | 640 | [![Percentage of issues still open](http://isitmaintained.com/badge/open/Naereen/badges.svg)](http://isitmaintained.com/project/Naereen/badges "Percentage of issues still open") 641 | ```markdown 642 | [![Percentage of issues still open](http://isitmaintained.com/badge/open/Naereen/badges.svg)](http://isitmaintained.com/project/Naereen/badges "Percentage of issues still open") 643 | ``` 644 | ### GitHub Pull Requests 645 | [![PR welcome issues still open](https://badgen.net/https/pr-welcome-badge.vercel.app/api/badge/fastify/help)](https://github.com/sinchang/pr-welcome-badge) 646 | ```markdown 647 | [![PR welcome issues still open](https://badgen.net/https/pr-welcome-badge.vercel.app/api/badge/fastify/help)](https://github.com/sinchang/pr-welcome-badge) 648 | ``` 649 | 650 | [![GitHub pull-requests](https://img.shields.io/github/issues-pr/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/pull/) 651 | ```markdown 652 | [![GitHub pull-requests](https://img.shields.io/github/issues-pr/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/pull/) 653 | ``` 654 | [![GitHub total-pull-requests](https://badgen.net/github/prs/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/pull/) 655 | ```markdown 656 | [![GitHub total-pull-requests](https://badgen.net/github/prs/Naereen/Strapdown.js)](https://GitHub.com/Naereen/StrapDown.js/pull/) 657 | ``` 658 | [![GitHub open-pull-requests](https://badgen.net/github/open-prs/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/pulls?q=is%3Aopen) 659 | ```markdown 660 | [![GitHub open-pull-requests](https://badgen.net/github/open-prs/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/pulls?q=is%3Aopen) 661 | ``` 662 | 663 | [![GitHub pull-requests closed](https://img.shields.io/github/issues-pr-closed/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/pull/) 664 | ```markdown 665 | [![GitHub pull-requests closed](https://img.shields.io/github/issues-pr-closed/Naereen/StrapDown.js.svg)](https://GitHub.com/Naereen/StrapDown.js/pull/) 666 | ``` 667 | [![GitHub pull-requests closed](https://badgen.net/github/closed-prs/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/pulls?q=is%3Aclosed) 668 | ```markdown 669 | [![GitHub pull-requests closed](https://badgen.net/github/closed-prs/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/pulls?q=is%3Aclosed) 670 | ``` 671 | [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/pulls?q=is%3Amerged) 672 | ```markdown 673 | [![GitHub pull-requests merged](https://badgen.net/github/merged-prs/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/pulls?q=is%3Amerged) 674 | ``` 675 | 676 | ### GitHub Make a Pull Requests 677 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 678 | ```markdown 679 | [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) 680 | ``` 681 | 682 | ### GitHub version 683 | [![GitHub version](https://badge.fury.io/gh/Naereen%2FStrapDown.js.svg)](https://github.com/Naereen/StrapDown.js) 684 | ```markdown 685 | [![GitHub version](https://badge.fury.io/gh/Naereen%2FStrapDown.js.svg)](https://github.com/Naereen/StrapDown.js) 686 | ``` 687 | 688 | ### GitHub Profile 689 | 690 | [![Naereen's github trophy](https://github-profile-trophy.vercel.app/?username=Naereen&row=1)](https://github.com/ryo-ma/github-profile-trophy) 691 | ```markdown 692 | [![Naereen's github trophy](https://github-profile-trophy.vercel.app/?username=Naereen&row=1)](https://github.com/ryo-ma/github-profile-trophy) 693 | ``` 694 | 695 | [![Naereen's github stats](https://github-readme-stats.vercel.app/api?username=Naereen&theme=blue-green)](https://github.com/anuraghazra/github-readme-stats) 696 | ```markdown 697 | [![Naereen's github stats](https://github-readme-stats.vercel.app/api?username=Naereen&theme=blue-green)](https://github.com/anuraghazra/github-readme-stats) 698 | ``` 699 | 700 | [![Naereen's top languages](https://github-readme-stats.vercel.app/api/top-langs/?username=Naereen&theme=blue-green)](https://github.com/anuraghazra/github-readme-stats) 701 | ```markdown 702 | [![Naereen's top languages](https://github-readme-stats.vercel.app/api/top-langs/?username=Naereen&theme=blue-green)](https://github.com/anuraghazra/github-readme-stats) 703 | ``` 704 | 705 | [![Naereen's github streak](https://github-readme-streak-stats.herokuapp.com/?user=Naereen&theme=blue-green)](https://github.com/DenverCoder1/github-readme-streak-stats) 706 | ```markdown 707 | [![Naereen's github streak](https://github-readme-streak-stats.herokuapp.com/?user=Naereen&theme=blue-green)](https://github.com/DenverCoder1/github-readme-streak-stats) 708 | ``` 709 | 710 | [![Naereen's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=Naereen&bg_color=0d0e12&color=1c81ce&line=0f1129&point=079ae4&area=true&hide_border=true)](https://github.com/ashutosh00710/github-readme-activity-graph) 711 | ```markdown 712 | [![Naereen's github activity graph](https://github-readme-activity-graph.vercel.app/graph?username=Naereen&bg_color=0d0e12&color=1c81ce&line=0f1129&point=079ae4&area=true&hide_border=true)](https://github.com/ashutosh00710/github-readme-activity-graph) 713 | ``` 714 | 715 | ### GitHub Stars Sparklines 716 | [![Sparkline](https://stars.medv.io/Naereen/badges.svg)](https://stars.medv.io/Naereen/badges) 717 | ```markdown 718 | [![Sparkline](https://stars.medv.io/Naereen/badges.svg)](https://stars.medv.io/Naereen/badges) 719 | ``` 720 | 721 | ---- 722 | 723 | ## [GitLab](https://gitlab.com) related 724 | ### Gitlab issues 725 | [![GitLab issues open](https://badgen.net/gitlab/open-issues/gitlab-org/gitlab-runner)](https://gitlab.com/gitlab-org/gitlab-runner) 726 | ```markdown 727 | [![GitLab issues open](https://badgen.net/gitlab/open-issues/gitlab-org/gitlab-runner)](https://gitlab.com/gitlab-org/gitlab-runner) 728 | ``` 729 | [![GitLab issues closed](https://badgen.net/gitlab/closed-issues/gitlab-org/gitlab-runner)](https://gitlab.com/gitlab-org/gitlab-runner) 730 | ```markdown 731 | [![GitLab issues closed](https://badgen.net/gitlab/closed-issues/gitlab-org/gitlab-runner)](https://gitlab.com/gitlab-org/gitlab-runner) 732 | ``` 733 | [![GitLab issues total](https://badgen.net/gitlab/issues/gitlab-org/gitlab-runner)](https://gitlab.com/gitlab-org/gitlab-runner) 734 | ```markdown 735 | [![GitLab issues total](https://badgen.net/gitlab/issues/gitlab-org/gitlab-runner)](https://gitlab.com/gitlab-org/gitlab-runner) 736 | ``` 737 | [![GitLab issues by label](https://badgen.net/gitlab/label-issues/NickBusey/HomelabOS/Bug)](https://gitlab.com/NickBusey/HomelabOS/-/issues?scope=all&state=all&label_name[]=Bug) 738 | ```markdown 739 | [![GitLab issues by label](https://badgen.net/gitlab/label-issues/NickBusey/HomelabOS/Bug)](https://gitlab.com/NickBusey/HomelabOS/-/issues?scope=all&state=all&label_name[]=Bug) 740 | ``` 741 | [![GitLab open issues by label](https://badgen.net/gitlab/label-issues/NickBusey/HomelabOS/Bug)](https://gitlab.com/NickBusey/HomelabOS/-/issues?scope=all&state=open&label_name[]=Bug) 742 | ```markdown 743 | [![GitLab issues by label](https://badgen.net/gitlab/label-issues/NickBusey/HomelabOS/Bug)](https://gitlab.com/NickBusey/HomelabOS/-/issues?scope=all&state=open&label_name[]=Bug) 744 | ``` 745 | [![GitLab issues by label](https://badgen.net/gitlab/label-issues/NickBusey/HomelabOS/Bug)](https://gitlab.com/NickBusey/HomelabOS/-/issues?scope=all&state=closed&label_name[]=Bug) 746 | ```markdown 747 | [![GitLab issues by label](https://badgen.net/gitlab/label-issues/NickBusey/HomelabOS/Bug)](https://gitlab.com/NickBusey/HomelabOS/-/issues?scope=all&state=closed&label_name[]=Bug) 748 | ``` 749 | ### MR's 750 | [![GitLab mrs](https://badgen.net/gitlab/mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=all) 751 | ```markdown 752 | [![GitLab mrs](https://badgen.net/gitlab/mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=all) 753 | ``` 754 | [![GitLab open mrs](https://badgen.net/gitlab/open-mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=open) 755 | ```markdown 756 | [![GitLab open mrs](https://badgen.net/gitlab/open-mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=opem) 757 | ``` 758 | [![GitLab closed mrs](https://badgen.net/gitlab/closed-mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=closed) 759 | ```markdown 760 | [![GitLab closed mrs](https://badgen.net/gitlab/closed-mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=closed) 761 | ``` 762 | [![GitLab merged mrs](https://badgen.net/gitlab/merged-mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=merged) 763 | ```markdown 764 | [![GitLab merged mrs](https://badgen.net/gitlab/merged-mrs/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/merge_requests?scope=all&state=merged) 765 | ``` 766 | ### Branches 767 | [![GitLab branch](https://badgen.net/gitlab/branches/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/branches) 768 | ```markdown 769 | [![GitLab branch](https://badgen.net/gitlab/branches/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/branches) 770 | ``` 771 | 772 | ### Releases 773 | [![GitLab release](https://badgen.net/gitlab/releases/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/releases) 774 | ```markdown 775 | [![GitLab release](https://badgen.net/gitlab/releases/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/releases) 776 | ``` 777 | [![GitLab latest release](https://badgen.net/gitlab/release/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/releases) 778 | ```markdown 779 | [![GitLab latest release](https://badgen.net/gitlab/release/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/releases) 780 | ``` 781 | ### Tags 782 | [![GitLab tags](https://badgen.net/gitlab/tags/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/tags) 783 | ```markdown 784 | [![GitLab tags](https://badgen.net/gitlab/tags/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/tags) 785 | ``` 786 | ### Commits 787 | [![GitLab commit count](https://badgen.net/gitlab/commits/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/commits) 788 | ```markdown 789 | [![GitLab commit count](https://badgen.net/gitlab/commits/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/commits) 790 | ``` 791 | [![GitLab last commit](https://badgen.net/gitlab/last-commit/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/commits) 792 | ```markdown 793 | [![GitLab last commit](https://badgen.net/gitlab/last-commit/NickBusey/HomelabOS/)](https://gitlab.com/NickBusey/HomelabOS/-/commits) 794 | ``` 795 | ---- 796 | 797 | ## [Bitbucket](https://bitbucket.org) related 798 | ### Bitbucket issues 799 | [![Bitbucket issues](https://img.shields.io/bitbucket/issues/lbesson/bin.svg)](https://Bitbucket.org/lbesson/bin/issues/) 800 | ```markdown 801 | [![Bitbucket issues](https://img.shields.io/bitbucket/issues/lbesson/bin.svg)](https://Bitbucket.org/lbesson/bin/issues/) 802 | ``` 803 | 804 | ---- 805 | 806 | ## [PackageControl](https://packagecontrol.io/) related 807 | [![Package Control total downloads](https://img.shields.io/packagecontrol/dt/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 808 | ```markdown 809 | [![Package Control total downloads](https://img.shields.io/packagecontrol/dt/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 810 | ``` 811 | 812 | [![Package Control month downloads](https://img.shields.io/packagecontrol/dm/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 813 | ```markdown 814 | [![Package Control month downloads](https://img.shields.io/packagecontrol/dm/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 815 | ``` 816 | 817 | [![Package Control week downloads](https://img.shields.io/packagecontrol/dw/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 818 | ```markdown 819 | [![Package Control week downloads](https://img.shields.io/packagecontrol/dw/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 820 | ``` 821 | 822 | [![Package Control day downloads](https://img.shields.io/packagecontrol/dd/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 823 | ```markdown 824 | [![Package Control day downloads](https://img.shields.io/packagecontrol/dd/SwitchDictionary.svg)](https://packagecontrol.io/packages/SwitchDictionary) 825 | ``` 826 | 827 | ---- 828 | 829 | ## Licenses 830 | ### MIT License 831 | [![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/) 832 | ```markdown 833 | [![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/) 834 | ``` 835 | 836 | ### GPLv3 License 837 | [![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](http://perso.crans.org/besson/LICENSE.html) 838 | ```markdown 839 | [![GPLv3 license](https://img.shields.io/badge/License-GPLv3-blue.svg)](http://perso.crans.org/besson/LICENSE.html) 840 | ``` 841 | 842 | [![GPL license](https://img.shields.io/badge/License-GPL-blue.svg)](http://perso.crans.org/besson/LICENSE.html) 843 | ```markdown 844 | [![GPL license](https://img.shields.io/badge/License-GPL-blue.svg)](http://perso.crans.org/besson/LICENSE.html) 845 | ``` 846 | 847 | ### Unlicense 848 | 849 | [![Unlicense](https://img.shields.io/badge/License-Unlicense-blue.svg)](https://unlicense.org/) 850 | ```markdown 851 | [![Unlicense](https://img.shields.io/badge/License-Unlicense-blue.svg)](https://unlicense.org/) 852 | ``` 853 | 854 | ### [Creative Commons Licenses](https://creativecommons.org/licenses/) 855 | 856 | [![CC-0 license](https://img.shields.io/badge/License-CC--0-blue.svg)](https://creativecommons.org/licenses/by-nd/4.0) 857 | ```markdown 858 | [![CC-0 license](https://img.shields.io/badge/License-CC--0-blue.svg)](https://creativecommons.org/licenses/by-nd/4.0) 859 | ``` 860 | 861 | [![forthebadge cc-0](http://ForTheBadge.com/images/badges/cc-0.svg)](http://ForTheBadge.com) 862 | ```markdown 863 | [![forthebadge cc-0](http://ForTheBadge.com/images/badges/cc-0.svg)](http://ForTheBadge.com) 864 | ``` 865 | 866 | [![licensebuttons by-nd](https://licensebuttons.net/l/by-nd/3.0/88x31.png)](https://creativecommons.org/licenses/by-nd/4.0) 867 | ```markdown 868 | [![licensebuttons by-nd](https://licensebuttons.net/l/by-nd/3.0/88x31.png)](https://creativecommons.org/licenses/by-nd/4.0) 869 | ``` 870 | [![forthebadge cc-by-nd](http://ForTheBadge.com/images/badges/cc-by-nd.svg)](https://creativecommons.org/licenses/by-nd/4.0) 871 | ```markdown 872 | [![forthebadge cc-by-nd](http://ForTheBadge.com/images/badges/cc-by-nd.svg)](https://creativecommons.org/licenses/by-nd/4.0) 873 | ``` 874 | 875 | [![licensebuttons by](https://licensebuttons.net/l/by/3.0/88x31.png)](https://creativecommons.org/licenses/by/4.0) 876 | ```markdown 877 | [![licensebuttons by](https://licensebuttons.net/l/by/3.0/88x31.png)](https://creativecommons.org/licenses/by/4.0) 878 | ``` 879 | [![forthebadge cc-by](http://ForTheBadge.com/images/badges/cc-by.svg)](https://creativecommons.org/licenses/by/4.0) 880 | ```markdown 881 | [![forthebadge cc-by](http://ForTheBadge.com/images/badges/cc-by.svg)](https://creativecommons.org/licenses/by/4.0) 882 | ``` 883 | 884 | [![licensebuttons by-nc-sa](https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/4.0) 885 | ```markdown 886 | [![licensebuttons by-nc-sa](https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/4.0) 887 | ``` 888 | [![forthebadge cc-nc-sa](http://ForTheBadge.com/images/badges/cc-nc-sa.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0) 889 | ```markdown 890 | [![forthebadge cc-nc-sa](http://ForTheBadge.com/images/badges/cc-nc-sa.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0) 891 | ``` 892 | 893 | [![licensebuttons by-nc](https://licensebuttons.net/l/by-nc/3.0/88x31.png)](https://creativecommons.org/licenses/by-nc/4.0) 894 | ```markdown 895 | [![licensebuttons by-nc](https://licensebuttons.net/l/by-nc/3.0/88x31.png)](https://creativecommons.org/licenses/by-nc/4.0) 896 | ``` 897 | [![forthebadge cc-nc](http://ForTheBadge.com/images/badges/cc-nc.svg)](https://creativecommons.org/licenses/by-nc/4.0) 898 | ```markdown 899 | [![forthebadge cc-nc](http://ForTheBadge.com/images/badges/cc-nc.svg)](https://creativecommons.org/licenses/by-nc/4.0) 900 | ``` 901 | 902 | [![licensebuttons by-sa](https://licensebuttons.net/l/by-sa/3.0/88x31.png)](https://creativecommons.org/licenses/by-sa/4.0) 903 | ```markdown 904 | [![licensebuttons by-sa](https://licensebuttons.net/l/by-sa/3.0/88x31.png)](https://creativecommons.org/licenses/by-sa/4.0) 905 | ``` 906 | [![forthebadge cc-sa](http://ForTheBadge.com/images/badges/cc-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0) 907 | ```markdown 908 | [![forthebadge cc-sa](http://ForTheBadge.com/images/badges/cc-sa.svg)](https://creativecommons.org/licenses/by-sa/4.0) 909 | ``` 910 | 911 | The [Creative Commons License Buttons site](https://licensebuttons.net/) also 912 | provides a customizable way to access badges in various colours or sizes. 913 | 914 | [![Attribution-NonCommercial-ShareAlike](https://licensebuttons.net/i/l/by-nc-sa/ffffff/00/00/00/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/2.0/) 915 | ```markdown 916 | [![Attribution-NonCommercial-ShareAlike](https://licensebuttons.net/i/l/by-nc-sa/ffffff/00/00/00/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/2.0/) 917 | ``` 918 | [![Attribution-NonCommercial-ShareAlike](https://licensebuttons.net/i/l/by-nc-sa/000000/ff/ff/ff/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/2.0/) 919 | ```markdown 920 | [![Attribution-NonCommercial-ShareAlike](https://licensebuttons.net/i/l/by-nc-sa/000000/ff/ff/ff/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/2.0/) 921 | ``` 922 | [![Attribution-NonCommercial-ShareAlike](https://licensebuttons.net/i/l/by-nc-sa/eeeeee/ff/00/ff/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/2.0/) 923 | ```markdown 924 | [![Attribution-NonCommercial-ShareAlike](https://licensebuttons.net/i/l/by-nc-sa/eeeeee/ff/00/ff/88x31.png)](https://creativecommons.org/licenses/by-nc-sa/2.0/) 925 | ``` 926 | 927 | ---- 928 | 929 | ## Simple Icons 930 | 931 | Any [shields.io](https://shields.io/) badge can use a logo image by adding the 932 | `logo` query parameter to the name of any logo suported by 933 | [Simple Icons](https://simpleicons.org/). 934 | 935 | [![Vim](https://img.shields.io/badge/--019733?logo=vim)](https://www.vim.org/) 936 | ```markdown 937 | [![Vim](https://img.shields.io/badge/--019733?logo=vim)](https://www.vim.org/) 938 | ``` 939 | [![OpenBSD](https://img.shields.io/badge/--F2CA30?logo=openbsd&logoColor=000000)](https://www.openbsd.org/) 940 | ```markdown 941 | [![OpenBSD](https://img.shields.io/badge/--F2CA30?logo=openbsd&logoColor=000000)](https://www.openbsd.org/) 942 | ``` 943 | [![Suckless](https://img.shields.io/badge/--1177AA?logo=suckless)](https://suckless.org/) 944 | ```markdown 945 | [![Suckless](https://img.shields.io/badge/--1177AA?logo=suckless)](https://suckless.org/) 946 | ``` 947 | [![dwm](https://img.shields.io/badge/--1177AA?logo=dwm)](https://dwm.suckless.org/) 948 | ```markdown 949 | [![dwm](https://img.shields.io/badge/--1177AA?logo=dwm)](https://dwm.suckless.org/) 950 | ``` 951 | [![git](https://img.shields.io/badge/--F05032?logo=git&logoColor=ffffff)](http://git-scm.com/) 952 | ```markdown 953 | [![git](https://img.shields.io/badge/--F05032?logo=git&logoColor=ffffff)](http://git-scm.com/) 954 | ``` 955 | [![git](https://badgen.net/badge/icon/git?icon=git&label)](https://git-scm.com) 956 | ```markdown 957 | [![git](https://badgen.net/badge/icon/git?icon=git&label)](https://git-scm.com) 958 | ``` 959 | [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) 960 | ```markdown 961 | [![GitHub](https://img.shields.io/badge/--181717?logo=github&logoColor=ffffff)](https://github.com/) 962 | ``` 963 | [![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com) 964 | ```markdown 965 | [![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com) 966 | ``` 967 | [![x11](https://img.shields.io/badge/--F28834?logo=x.org&logoColor=ffffff)](https://x.org/) 968 | ```markdown 969 | [![x11](https://img.shields.io/badge/--F28834?logo=x.org&logoColor=ffffff)](https://x.org/) 970 | ``` 971 | [![Visual Studio](https://img.shields.io/badge/--6C33AF?logo=visual%20studio)](https://visualstudio.microsoft.com/) 972 | ```markdown 973 | [![Visual Studio](https://img.shields.io/badge/--6C33AF?logo=visual%20studio)](https://visualstudio.microsoft.com/) 974 | ``` 975 | [![Visual Studio](https://badgen.net/badge/icon/visualstudio?icon=visualstudio&label)](https://visualstudio.microsoft.com) 976 | ```markdown 977 | [![Visual Studio](https://badgen.net/badge/icon/visualstudio?icon=visualstudio&label)](https://visualstudio.microsoft.com) 978 | ``` 979 | [![Visual Studio Code](https://img.shields.io/badge/--007ACC?logo=visual%20studio%20code&logoColor=ffffff)](https://code.visualstudio.com/) 980 | ```markdown 981 | [![Visual Studio Code](https://img.shields.io/badge/--007ACC?logo=visual%20studio%20code&logoColor=ffffff)](https://code.visualstudio.com/) 982 | ``` 983 | [![.NET](https://img.shields.io/badge/--512BD4?logo=.net&logoColor=ffffff)](https://dotnet.microsoft.com/) 984 | ```markdown 985 | [![.NET](https://img.shields.io/badge/--512BD4?logo=.net&logoColor=ffffff)](https://dotnet.microsoft.com/) 986 | ``` 987 | [![Go](https://img.shields.io/badge/--00ADD8?logo=go&logoColor=ffffff)](https://golang.org/) 988 | ```markdown 989 | [![Go](https://img.shields.io/badge/--00ADD8?logo=go&logoColor=ffffff)](https://golang.org/) 990 | ``` 991 | [![JavaScript](https://img.shields.io/badge/--F7DF1E?logo=javascript&logoColor=000)](https://www.javascript.com/) 992 | ```markdown 993 | [![JavaScript](https://img.shields.io/badge/--F7DF1E?logo=javascript&logoColor=000)](https://www.javascript.com/) 994 | ``` 995 | [![TypeScript](https://img.shields.io/badge/--3178C6?logo=typescript&logoColor=ffffff)](https://www.typescriptlang.org/) 996 | ```markdown 997 | [![TypeScript](https://img.shields.io/badge/--3178C6?logo=typescript&logoColor=ffffff)](https://www.typescriptlang.org/) 998 | ``` 999 | [![TypeScript](https://badgen.net/badge/icon/typescript?icon=typescript&label)](https://typescriptlang.org) 1000 | ```markdown 1001 | [![TypeScript](https://badgen.net/badge/icon/typescript?icon=typescript&label)](https://typescriptlang.org) 1002 | ``` 1003 | [![Figma](https://img.shields.io/badge/--F24E1E?logo=figma&logoColor=ffffff)](https://www.figma.com/) 1004 | ```markdown 1005 | [![Figma](https://img.shields.io/badge/--F24E1E?logo=figma&logoColor=ffffff)](https://www.figma.com/) 1006 | ``` 1007 | [![Photoshop](https://img.shields.io/badge/--31A8FF?logo=adobe%20photoshop&logoColor=000)](https://www.photoshop.com/) 1008 | ```markdown 1009 | [![Photoshop](https://img.shields.io/badge/--31A8FF?logo=adobe%20photoshop&logoColor=000)](https://www.photoshop.com/) 1010 | ``` 1011 | [![Atom](https://badgen.net/badge/icon/atom?icon=atom&label)](https://atom.io) 1012 | ```markdown 1013 | [![Atom](https://badgen.net/badge/icon/atom?icon=atom&label)](https://atom.io) 1014 | ``` 1015 | [![Azure](https://badgen.net/badge/icon/azure?icon=azure&label)](https://azure.microsoft.com) 1016 | ```markdown 1017 | [![Azure](https://badgen.net/badge/icon/azure?icon=azure&label)](https://azure.microsoft.com) 1018 | ``` 1019 | [![BitCoin](https://badgen.net/badge/icon/bitcoin?icon=bitcoin&label)](https://bitcoin.org) 1020 | ```markdown 1021 | [![BitCoin](https://badgen.net/badge/icon/bitcoin?icon=bitcoin&label)](https://bitcoin.org) 1022 | ``` 1023 | [![Buymeacoffee](https://badgen.net/badge/icon/buymeacoffee?icon=buymeacoffee&label)](https://https://www.buymeacoffee.com/) 1024 | ```markdown 1025 | [![Buymeacoffee](https://badgen.net/badge/icon/buymeacoffee?icon=buymeacoffee&label)](https://https://www.buymeacoffee.com/) 1026 | ``` 1027 | [![CircleCI](https://badgen.net/badge/icon/circleci?icon=circleci&label)](https://https://circleci.com/) 1028 | ```markdown 1029 | [![CircleCI](https://badgen.net/badge/icon/circleci?icon=circleci&label)](https://https://circleci.com/) 1030 | ``` 1031 | [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://https://discord.com/) 1032 | ```markdown 1033 | [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://https://discord.com/) 1034 | ``` 1035 | [![Docker](https://badgen.net/badge/icon/docker?icon=docker&label)](https://https://docker.com/) 1036 | ```markdown 1037 | [![Docker](https://badgen.net/badge/icon/docker?icon=docker&label)](https://https://docker.com/) 1038 | ``` 1039 | [![Eclipse](https://badgen.net/badge/icon/eclipse?icon=eclipse&label)](https://https://eclipse.org/) 1040 | ```markdown 1041 | [![Eclipse](https://badgen.net/badge/icon/eclipse?icon=eclipse&label)](https://https://eclipse.org/) 1042 | ``` 1043 | [![GitLab](https://badgen.net/badge/icon/gitlab?icon=gitlab&label)](https://https://gitlab.com/) 1044 | ```markdown 1045 | [![GitLab](https://badgen.net/badge/icon/gitlab?icon=gitlab&label)](https://https://gitlab.com/) 1046 | ``` 1047 | [![Jira](https://badgen.net/badge/icon/jira?icon=jira&label)](https://https://jira.com/) 1048 | ```markdown 1049 | [![Jira](https://badgen.net/badge/icon/jira?icon=jira&label)](https://https://jira.com/) 1050 | ``` 1051 | [![JsDelivr](https://badgen.net/badge/icon/jsdelivr?icon=jsdelivr&label)](https://https://jsdelivr.com/) 1052 | ```markdown 1053 | [![JsDelivr](https://badgen.net/badge/icon/jsdelivr?icon=jsdelivr&label)](https://https://jsdelivr.com/) 1054 | ``` 1055 | [![Maven](https://badgen.net/badge/icon/maven?icon=maven&label)](https://https://maven.apache.org/) 1056 | ```markdown 1057 | [![Maven](https://badgen.net/badge/icon/maven?icon=maven&label)](https://https://maven.apache.org/) 1058 | ``` 1059 | [![Npm](https://badgen.net/badge/icon/npm?icon=npm&label)](https://https://npmjs.com/) 1060 | ```markdown 1061 | [![Npm](https://badgen.net/badge/icon/npm?icon=npm&label)](https://https://npmjs.com/) 1062 | ``` 1063 | [![NuGet](https://badgen.net/badge/icon/nuget?icon=nuget&label)](https://https://nuget.org/) 1064 | ```markdown 1065 | [![NuGet](https://badgen.net/badge/icon/nuget?icon=nuget&label)](https://https://nuget.org/) 1066 | ``` 1067 | [![Patreon](https://badgen.net/badge/icon/patreon?icon=patreon&label)](https://https://patron.com/) 1068 | ```markdown 1069 | [![Patreon](https://badgen.net/badge/icon/patreon?icon=patreon&label)](https://https://patron.com/) 1070 | ``` 1071 | [![PyPi](https://badgen.net/badge/icon/pypi?icon=pypi&label)](https://https://pypi.org/) 1072 | ```markdown 1073 | [![PyPi](https://badgen.net/badge/icon/pypi?icon=pypi&label)](https://https://pypi.org/) 1074 | ``` 1075 | [![Ruby](https://badgen.net/badge/icon/ruby?icon=ruby&label)](https://https://ruby-lang.org/) 1076 | ```markdown 1077 | [![Ruby](https://badgen.net/badge/icon/ruby?icon=ruby&label)](https://https://ruby-lang.org/) 1078 | ``` 1079 | ![Terminal](https://badgen.net/badge/icon/terminal?icon=terminal&label) 1080 | ```markdown 1081 | ![Terminal](https://badgen.net/badge/icon/terminal?icon=terminal&label) 1082 | ``` 1083 | [![TravisCI](https://badgen.net/badge/icon/travis?icon=travis&label)](https://travis-ci.org) 1084 | ```markdown 1085 | [![TravisCI](https://badgen.net/badge/icon/travis?icon=travis&label)](https://travis-ci.org) 1086 | ``` 1087 | [![Twitter](https://badgen.net/badge/icon/twitter?icon=twitter&label)](https://twitter.com) 1088 | ```markdown 1089 | [![Twitter](https://badgen.net/badge/icon/twitter?icon=twitter&label)](https://twitter.com) 1090 | ``` 1091 | [![Windows](https://badgen.net/badge/icon/windows?icon=windows&label)](https://microsoft.com/windows/) 1092 | ```markdown 1093 | [![Windows](https://badgen.net/badge/icon/windows?icon=windows&label)](https://microsoft.com/windows/) 1094 | ``` 1095 | 1096 | ---- 1097 | 1098 | ## Open-Source 1099 | Version 1, in SVG: 1100 | [![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1101 | ```markdown 1102 | [![Open Source Love svg1](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1103 | ``` 1104 | 1105 | Version 1, in PNG: 1106 | [![Open Source Love png1](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 1107 | ```markdown 1108 | [![Open Source Love png1](https://badges.frapsoft.com/os/v1/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 1109 | ``` 1110 | 1111 | Version 2, in SVG: 1112 | [![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1113 | ```markdown 1114 | [![Open Source Love svg2](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1115 | ``` 1116 | 1117 | Version 2, in PNG: 1118 | [![Open Source Love png2](https://badges.frapsoft.com/os/v2/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 1119 | ```markdown 1120 | [![Open Source Love png2](https://badges.frapsoft.com/os/v2/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 1121 | ``` 1122 | 1123 | Version 3, in SVG: 1124 | [![Open Source Love svg3](https://badges.frapsoft.com/os/v3/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1125 | ```markdown 1126 | [![Open Source Love svg3](https://badges.frapsoft.com/os/v3/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1127 | ``` 1128 | 1129 | Version 3, in PNG: 1130 | [![Open Source Love png3](https://badges.frapsoft.com/os/v3/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 1131 | ```markdown 1132 | [![Open Source Love png3](https://badges.frapsoft.com/os/v3/open-source.png?v=103)](https://github.com/ellerbrock/open-source-badges/) 1133 | ``` 1134 | 1135 | Open Source? Yes! 1136 | [![Open Source? Yes!](https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github)](https://github.com/Naereen/badges/) 1137 | ```markdown 1138 | [![Open Source? Yes!](https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github)](https://github.com/Naereen/badges/) 1139 | ``` 1140 | 1141 | ---- 1142 | 1143 | ## Meta badges ?! 1144 | This is a badge to show that you like to put badges on your README: 1145 | 1146 | [![Awesome Badges](https://img.shields.io/badge/badges-awesome-green.svg)](https://github.com/Naereen/badges) 1147 | ```markdown 1148 | [![Awesome Badges](https://img.shields.io/badge/badges-awesome-green.svg)](https://github.com/Naereen/badges) 1149 | ``` 1150 | 1151 | ---- 1152 | 1153 | ## DOI and Zenodo 1154 | This is a badge to link to a [DOI](https://doi.org/): 1155 | 1156 | [![DOI:10.1007/978-3-319-76207-4_15](https://zenodo.org/badge/DOI/10.1007/978-3-319-76207-4_15.svg)](https://doi.org/10.1007/978-3-319-76207-4_15) 1157 | ```markdown 1158 | [![DOI:10.1007/978-3-319-76207-4_15](https://zenodo.org/badge/DOI/10.1007/978-3-319-76207-4_15.svg)](https://doi.org/10.1007/978-3-319-76207-4_15) 1159 | ``` 1160 | 1161 | ---- 1162 | 1163 | ## DOI Citations 1164 | This badge is showing the number of citations of a paper / DOI from Google Scholar. Updated daily. See [HowTo](https://juleskreuer.eu/citation-badge/) 1165 | 1166 | [![Citation Badge](https://api.juleskreuer.eu/citation-badge.php?doi=10.1126/science.1058040)](https://juleskreuer.eu/citation-badge/) 1167 | ```markdown 1168 | [![Citation Badge](https://api.juleskreuer.eu/citation-badge.php?doi=10.1126/science.1058040)](https://juleskreuer.eu/citation-badge/) 1169 | ``` 1170 | 1171 | ---- 1172 | 1173 | ## Discord 1174 | Discord Badges 1175 | 1176 | [![Discord](https://img.shields.io/discord/591914197219016707.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/vpEv3HJ) 1177 | ```markdown 1178 | [![Discord](https://img.shields.io/discord/591914197219016707.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/vpEv3HJ) 1179 | ``` 1180 | [![Support Server](https://img.shields.io/discord/591914197219016707.svg?color=7289da&label=TestingMeme&logo=discord&style=flat-square)](https://discord.gg/vpEv3HJ) 1181 | ```markdown 1182 | [![Support Server](https://img.shields.io/discord/591914197219016707.svg?color=7289da&label=TestingMeme&logo=discord&style=flat-square)](https://discord.gg/vpEv3HJ) 1183 | ``` 1184 | [![Support Server](https://img.shields.io/discord/591914197219016707.svg?label=Discord&logo=Discord&colorB=7289da&style=for-the-badge)](https://discord.gg/vpEv3HJ) 1185 | ```markdown 1186 | [![Support Server](https://img.shields.io/discord/591914197219016707.svg?label=Discord&logo=Discord&colorB=7289da&style=for-the-badge)](https://discord.gg/vpEv3HJ) 1187 | ``` 1188 | [![C# Discord](https://badgen.net/discord/members/csharp)](https://discord.gg/csharp) 1189 | ```markdown 1190 | [![C# Discord](https://badgen.net/discord/members/csharp)](https://discord.gg/csharp) 1191 | ``` 1192 | [![C# Discord online members](https://badgen.net/discord/online-members/csharp)](https://discord.gg/csharp) 1193 | ```markdown 1194 | [![C# Discord online members](https://badgen.net/discord/online-members/csharp)](https://discord.gg/csharp) 1195 | ``` 1196 | ---- 1197 | 1198 | ## Jetbrains 1199 | Jetbrains Badges 1200 | 1201 | 1202 | [![official JetBrains project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub) 1203 | ```markdown 1204 | [![official JetBrains project](http://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub) 1205 | ``` 1206 | 1207 | [![JetBrains Plugins](https://img.shields.io/jetbrains/plugin/v/9630-a8translate.svg)](https://plugins.jetbrains.com/) 1208 | ```markdown 1209 | [![JetBrains Plugins](https://img.shields.io/jetbrains/plugin/v/9630-a8translate.svg)](https://plugins.jetbrains.com/) 1210 | ``` 1211 | 1212 | ---- 1213 | 1214 | ## [Say thanks](https://github.com/kennethreitz/saythanks.io/) 1215 | A nice badge to give a link to [saythanks.io/to/kennethreitz](https://saythanks.io/to/kennethreitz) (for example). 1216 | 1217 | [![saythanks](https://img.shields.io/badge/say-thanks-ff69b4.svg)](https://saythanks.io/to/kennethreitz) 1218 | ```markdown 1219 | [![saythanks](https://img.shields.io/badge/say-thanks-ff69b4.svg)](https://saythanks.io/to/kennethreitz) 1220 | ``` 1221 | 1222 | ---- 1223 | 1224 | ## Custom Logo 1225 | 1226 |
1227 | How to Create 1228 | 1229 | ## Step by Step 1230 | 1. Search a SVG image logo 1231 | * Some databases: 1232 | - [Simpleicons](https://simpleicons.org/) 1233 | - [Flaticon](https://www.flaticon.com/) 1234 | - [Materialdesignicons](https://materialdesignicons.com/) 1235 | 2. Optimize the SVG image using a tool: 1236 | * Example of tool: 1237 | - [SVGO Project](https://github.com/svg/svgo) ([Web App](https://jakearchibald.github.io/svgomg/)) 1238 | 3. Encode the Optimized SVG to Base64 using a tool: 1239 | * Example of tool: 1240 | - [B64.io ](https://b64.io/) 1241 | - [Base64.Guru](https://base64.guru/converter/encode/image/svg) 1242 | 4. Place the B64 code after the code: 1243 | ```markdown 1244 | https://img.shields.io/badge/--?logo=data:image/svg%2bxml;base64, 1245 | ``` 1246 | 5. Use in your README.md 1247 |
1248 | 1249 | ![Love](https://img.shields.io/badge/Love-pink?style=flat-square&logo=data:image/svg%2bxml;base64,PHN2ZyByb2xlPSJpbWciIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+R2l0SHViIFNwb25zb3JzIGljb248L3RpdGxlPjxwYXRoIGQ9Ik0xNy42MjUgMS40OTljLTIuMzIgMC00LjM1NCAxLjIwMy01LjYyNSAzLjAzLTEuMjcxLTEuODI3LTMuMzA1LTMuMDMtNS42MjUtMy4wM0MzLjEyOSAxLjQ5OSAwIDQuMjUzIDAgOC4yNDljMCA0LjI3NSAzLjA2OCA3Ljg0NyA1LjgyOCAxMC4yMjdhMzMuMTQgMzMuMTQgMCAwIDAgNS42MTYgMy44NzZsLjAyOC4wMTcuMDA4LjAwMy0uMDAxLjAwM2MuMTYzLjA4NS4zNDIuMTI2LjUyMS4xMjUuMTc5LjAwMS4zNTgtLjA0MS41MjEtLjEyNWwtLjAwMS0uMDAzLjAwOC0uMDAzLjAyOC0uMDE3YTMzLjE0IDMzLjE0IDAgMCAwIDUuNjE2LTMuODc2QzIwLjkzMiAxNi4wOTYgMjQgMTIuNTI0IDI0IDguMjQ5YzAtMy45OTYtMy4xMjktNi43NS02LjM3NS02Ljc1em0tLjkxOSAxNS4yNzVhMzAuNzY2IDMwLjc2NiAwIDAgMS00LjcwMyAzLjMxNmwtLjAwNC0uMDAyLS4wMDQuMDAyYTMwLjk1NSAzMC45NTUgMCAwIDEtNC43MDMtMy4zMTZjLTIuNjc3LTIuMzA3LTUuMDQ3LTUuMjk4LTUuMDQ3LTguNTIzIDAtMi43NTQgMi4xMjEtNC41IDQuMTI1LTQuNSAyLjA2IDAgMy45MTQgMS40NzkgNC41NDQgMy42ODQuMTQzLjQ5NS41OTYuNzk3IDEuMDg2Ljc5Ni40OS4wMDEuOTQzLS4zMDIgMS4wODUtLjc5Ni42My0yLjIwNSAyLjQ4NC0zLjY4NCA0LjU0NC0zLjY4NCAyLjAwNCAwIDQuMTI1IDEuNzQ2IDQuMTI1IDQuNSAwIDMuMjI1LTIuMzcgNi4yMTYtNS4wNDggOC41MjN6Ii8+PC9zdmc+) ([Source](https://simpleicons.org/icons/githubsponsors.svg)) 1250 | ```markdown 1251 | ![Love](https://img.shields.io/badge/Love-pink?style=flat-square&logo=data:image/svg%2bxml;base64,PHN2ZyByb2xlPSJpbWciIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+R2l0SHViIFNwb25zb3JzIGljb248L3RpdGxlPjxwYXRoIGQ9Ik0xNy42MjUgMS40OTljLTIuMzIgMC00LjM1NCAxLjIwMy01LjYyNSAzLjAzLTEuMjcxLTEuODI3LTMuMzA1LTMuMDMtNS42MjUtMy4wM0MzLjEyOSAxLjQ5OSAwIDQuMjUzIDAgOC4yNDljMCA0LjI3NSAzLjA2OCA3Ljg0NyA1LjgyOCAxMC4yMjdhMzMuMTQgMzMuMTQgMCAwIDAgNS42MTYgMy44NzZsLjAyOC4wMTcuMDA4LjAwMy0uMDAxLjAwM2MuMTYzLjA4NS4zNDIuMTI2LjUyMS4xMjUuMTc5LjAwMS4zNTgtLjA0MS41MjEtLjEyNWwtLjAwMS0uMDAzLjAwOC0uMDAzLjAyOC0uMDE3YTMzLjE0IDMzLjE0IDAgMCAwIDUuNjE2LTMuODc2QzIwLjkzMiAxNi4wOTYgMjQgMTIuNTI0IDI0IDguMjQ5YzAtMy45OTYtMy4xMjktNi43NS02LjM3NS02Ljc1em0tLjkxOSAxNS4yNzVhMzAuNzY2IDMwLjc2NiAwIDAgMS00LjcwMyAzLjMxNmwtLjAwNC0uMDAyLS4wMDQuMDAyYTMwLjk1NSAzMC45NTUgMCAwIDEtNC43MDMtMy4zMTZjLTIuNjc3LTIuMzA3LTUuMDQ3LTUuMjk4LTUuMDQ3LTguNTIzIDAtMi43NTQgMi4xMjEtNC41IDQuMTI1LTQuNSAyLjA2IDAgMy45MTQgMS40NzkgNC41NDQgMy42ODQuMTQzLjQ5NS41OTYuNzk3IDEuMDg2Ljc5Ni40OS4wMDEuOTQzLS4zMDIgMS4wODUtLjc5Ni42My0yLjIwNSAyLjQ4NC0zLjY4NCA0LjU0NC0zLjY4NCAyLjAwNCAwIDQuMTI1IDEuNzQ2IDQuMTI1IDQuNSAwIDMuMjI1LTIuMzcgNi4yMTYtNS4wNDggOC41MjN6Ii8+PC9zdmc+) 1252 | ``` 1253 | 1254 | ![Magic](https://img.shields.io/badge/Made%20with-Magic-orange?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGc+PHBhdGggZD0ibTM5NS44MiAxODIuNjE2LTE4OC43MiAxODguNzItMTIuOTEgMS43Mi05LjM1IDIwLjU0LTM0LjMxIDM0LjMxLTExLjAxLS43My0xMS4yNSAyMi45OS01Ni40OCA1Ni40OGMtMi45MyAyLjkzLTYuNzcgNC4zOS0xMC42MSA0LjM5cy03LjY4LTEuNDYtMTAuNjEtNC4zOWwtMjIuNjItMjIuNjJoLS4wMWwtMjIuNjItMjIuNjNjLTUuODYtNS44Ni01Ljg2LTE1LjM2IDAtMjEuMjJsNzcuNjMtNzcuNjMgMTYuNi03LjAzIDUuNjYtMTUuMjMgMzQuMzEtMzQuMzEgMTQuODQtNC45MiA3LjQyLTE3LjM0IDE2Ny41Ny0xNjcuNTcgMzMuMjQgMzMuMjR6IiBmaWxsPSIjZjY2Ii8+PHBhdGggZD0ibTM5NS44MiAxMTYuMTQ2djY2LjQ3bC0xODguNzIgMTg4LjcyLTEyLjkxIDEuNzItOS4zNSAyMC41NC0zNC4zMSAzNC4zMS0xMS4wMS0uNzMtMTEuMjUgMjIuOTktNTYuNDggNTYuNDhjLTIuOTMgMi45My02Ljc3IDQuMzktMTAuNjEgNC4zOXMtNy42OC0xLjQ2LTEwLjYxLTQuMzlsLTIyLjYyLTIyLjYyIDMzNC42NC0zMzQuNjR6IiBmaWxsPSIjZTYyZTZiIi8+PHBhdGggZD0ibTUwNi42MSAyMDkuMDA2LTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xNy00LjUyLTQuNTMtMTEuNDItNS42OC0xNy4xNy0yLjg4bC04OC4zOCA0My4wNS02OS4xMy02OS4xNGMtNC4zNS00LjM1LTEwLjkyLTUuNi0xNi41Ni0zLjE2LTUuNjUgMi40NS05LjIzIDguMDktOS4wNCAxNC4yNGwyLjg2IDkwLjQ1LTg1LjM3IDU3LjgzYy00LjkxIDMuMzItNy40IDkuMjItNi4zNiAxNS4wNCAxLjA0IDUuODMgNS40IDEwLjUxIDExLjE1IDExLjk0bDk2LjYyIDI0LjAxIDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZ6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTI5Ni4yNiAyMTUuNzA2IDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZsLTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xN3oiIGZpbGw9IiNmZDkwMjUiLz48cGF0aCBkPSJtNDY1IDQxNi45NjZjLTI1LjkyIDAtNDcgMjEuMDgtNDcgNDdzMjEuMDggNDcgNDcgNDcgNDctMjEuMDggNDctNDctMjEuMDgtNDctNDctNDd6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTEwNCAyOC45NjZoLTEzdi0xM2MwLTguMjg0LTYuNzE2LTE1LTE1LTE1cy0xNSA2LjcxNi0xNSAxNXYxM2gtMTNjLTguMjg0IDAtMTUgNi43MTYtMTUgMTVzNi43MTYgMTUgMTUgMTVoMTN2MTNjMCA4LjI4NCA2LjcxNiAxNSAxNSAxNXMxNS02LjcxNiAxNS0xNXYtMTNoMTNjOC4yODQgMCAxNS02LjcxNiAxNS0xNXMtNi43MTYtMTUtMTUtMTV6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTIwNy4xIDM3MS4zMzYtMjIuMjYgMjIuMjYtNDUuMzItODcuNjIgMjIuMjYtMjIuMjZ6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTE4NC44NCAzOTMuNTk2IDIyLjI2LTIyLjI2LTIyLjY2LTQzLjgxLTIyLjI2NSAyMi4yNjV6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTE1MC41MyA0MjcuOTA2LTIyLjI2IDIyLjI2LTQ1LjMyLTg3LjYyIDIyLjI2LTIyLjI2eiIgZmlsbD0iI2ZlZDg0MyIvPjxwYXRoIGQ9Im0xMjguMjcgNDUwLjE2NiAyMi4yNi0yMi4yNi0yMi42NTUtNDMuODE1LTIyLjI2IDIyLjI2eiIgZmlsbD0iI2ZhYmUyYyIvPjxjaXJjbGUgY3g9IjE1IiBjeT0iMTE5Ljk2OSIgZmlsbD0iIzVlZDhkMyIgcj0iMTUiLz48Y2lyY2xlIGN4PSIxMjgiIGN5PSIxOTkuOTY5IiBmaWxsPSIjZDU5OWVkIiByPSIxNSIvPjxjaXJjbGUgY3g9IjE5MiIgY3k9IjYzLjk2NCIgZmlsbD0iI2Y2NiIgcj0iMTUiLz48Y2lyY2xlIGN4PSIzMjgiIGN5PSI0MTUuOTY3IiBmaWxsPSIjMzFiZWJlIiByPSIxNSIvPjxjaXJjbGUgY3g9IjQ0MCIgY3k9IjMyNy45NjciIGZpbGw9IiNhZDc3ZTMiIHI9IjE0Ljk5OSIvPjwvZz48L3N2Zz4=) ([Source](https://www.flaticon.com/free-icon/magic-wand_3627668)) 1255 | ```markdown 1256 | ![Magic](https://img.shields.io/badge/Made%20with-Magic-orange?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGc+PHBhdGggZD0ibTM5NS44MiAxODIuNjE2LTE4OC43MiAxODguNzItMTIuOTEgMS43Mi05LjM1IDIwLjU0LTM0LjMxIDM0LjMxLTExLjAxLS43My0xMS4yNSAyMi45OS01Ni40OCA1Ni40OGMtMi45MyAyLjkzLTYuNzcgNC4zOS0xMC42MSA0LjM5cy03LjY4LTEuNDYtMTAuNjEtNC4zOWwtMjIuNjItMjIuNjJoLS4wMWwtMjIuNjItMjIuNjNjLTUuODYtNS44Ni01Ljg2LTE1LjM2IDAtMjEuMjJsNzcuNjMtNzcuNjMgMTYuNi03LjAzIDUuNjYtMTUuMjMgMzQuMzEtMzQuMzEgMTQuODQtNC45MiA3LjQyLTE3LjM0IDE2Ny41Ny0xNjcuNTcgMzMuMjQgMzMuMjR6IiBmaWxsPSIjZjY2Ii8+PHBhdGggZD0ibTM5NS44MiAxMTYuMTQ2djY2LjQ3bC0xODguNzIgMTg4LjcyLTEyLjkxIDEuNzItOS4zNSAyMC41NC0zNC4zMSAzNC4zMS0xMS4wMS0uNzMtMTEuMjUgMjIuOTktNTYuNDggNTYuNDhjLTIuOTMgMi45My02Ljc3IDQuMzktMTAuNjEgNC4zOXMtNy42OC0xLjQ2LTEwLjYxLTQuMzlsLTIyLjYyLTIyLjYyIDMzNC42NC0zMzQuNjR6IiBmaWxsPSIjZTYyZTZiIi8+PHBhdGggZD0ibTUwNi42MSAyMDkuMDA2LTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xNy00LjUyLTQuNTMtMTEuNDItNS42OC0xNy4xNy0yLjg4bC04OC4zOCA0My4wNS02OS4xMy02OS4xNGMtNC4zNS00LjM1LTEwLjkyLTUuNi0xNi41Ni0zLjE2LTUuNjUgMi40NS05LjIzIDguMDktOS4wNCAxNC4yNGwyLjg2IDkwLjQ1LTg1LjM3IDU3LjgzYy00LjkxIDMuMzItNy40IDkuMjItNi4zNiAxNS4wNCAxLjA0IDUuODMgNS40IDEwLjUxIDExLjE1IDExLjk0bDk2LjYyIDI0LjAxIDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZ6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTI5Ni4yNiAyMTUuNzA2IDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZsLTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xN3oiIGZpbGw9IiNmZDkwMjUiLz48cGF0aCBkPSJtNDY1IDQxNi45NjZjLTI1LjkyIDAtNDcgMjEuMDgtNDcgNDdzMjEuMDggNDcgNDcgNDcgNDctMjEuMDggNDctNDctMjEuMDgtNDctNDctNDd6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTEwNCAyOC45NjZoLTEzdi0xM2MwLTguMjg0LTYuNzE2LTE1LTE1LTE1cy0xNSA2LjcxNi0xNSAxNXYxM2gtMTNjLTguMjg0IDAtMTUgNi43MTYtMTUgMTVzNi43MTYgMTUgMTUgMTVoMTN2MTNjMCA4LjI4NCA2LjcxNiAxNSAxNSAxNXMxNS02LjcxNiAxNS0xNXYtMTNoMTNjOC4yODQgMCAxNS02LjcxNiAxNS0xNXMtNi43MTYtMTUtMTUtMTV6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTIwNy4xIDM3MS4zMzYtMjIuMjYgMjIuMjYtNDUuMzItODcuNjIgMjIuMjYtMjIuMjZ6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTE4NC44NCAzOTMuNTk2IDIyLjI2LTIyLjI2LTIyLjY2LTQzLjgxLTIyLjI2NSAyMi4yNjV6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTE1MC41MyA0MjcuOTA2LTIyLjI2IDIyLjI2LTQ1LjMyLTg3LjYyIDIyLjI2LTIyLjI2eiIgZmlsbD0iI2ZlZDg0MyIvPjxwYXRoIGQ9Im0xMjguMjcgNDUwLjE2NiAyMi4yNi0yMi4yNi0yMi42NTUtNDMuODE1LTIyLjI2IDIyLjI2eiIgZmlsbD0iI2ZhYmUyYyIvPjxjaXJjbGUgY3g9IjE1IiBjeT0iMTE5Ljk2OSIgZmlsbD0iIzVlZDhkMyIgcj0iMTUiLz48Y2lyY2xlIGN4PSIxMjgiIGN5PSIxOTkuOTY5IiBmaWxsPSIjZDU5OWVkIiByPSIxNSIvPjxjaXJjbGUgY3g9IjE5MiIgY3k9IjYzLjk2NCIgZmlsbD0iI2Y2NiIgcj0iMTUiLz48Y2lyY2xlIGN4PSIzMjgiIGN5PSI0MTUuOTY3IiBmaWxsPSIjMzFiZWJlIiByPSIxNSIvPjxjaXJjbGUgY3g9IjQ0MCIgY3k9IjMyNy45NjciIGZpbGw9IiNhZDc3ZTMiIHI9IjE0Ljk5OSIvPjwvZz48L3N2Zz4=) 1257 | ``` 1258 | 1259 | ![Safe](https://img.shields.io/badge/Stay-Safe-red?logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNTEwIDUxMCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCA1MTAgNTEwIiB3aWR0aD0iNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnPjxnPjxwYXRoIGQ9Im0xNzQuNjEgMzAwYy0yMC41OCAwLTQwLjU2IDYuOTUtNTYuNjkgMTkuNzJsLTExMC4wOSA4NS43OTd2MTA0LjQ4M2g1My41MjlsNzYuNDcxLTY1aDEyNi44MnYtMTQ1eiIgZmlsbD0iI2ZmZGRjZSIvPjwvZz48cGF0aCBkPSJtNTAyLjE3IDI4NC43MmMwIDguOTUtMy42IDE3Ljg5LTEwLjc4IDI0LjQ2bC0xNDguNTYgMTM1LjgyaC03OC4xOHYtODVoNjguMThsMTE0LjM0LTEwMC4yMWMxMi44Mi0xMS4yMyAzMi4wNi0xMC45MiA0NC41LjczIDcgNi41NSAxMC41IDE1LjM4IDEwLjUgMjQuMnoiIGZpbGw9IiNmZmNjYmQiLz48cGF0aCBkPSJtMzMyLjgzIDM0OS42M3YxMC4zN2gtNjguMTh2LTYwaDE4LjU1YzI3LjQxIDAgNDkuNjMgMjIuMjIgNDkuNjMgNDkuNjN6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTM5OS44IDc3LjN2OC4wMWMwIDIwLjY1LTguMDQgNDAuMDctMjIuNjQgNTQuNjdsLTExMi41MSAxMTIuNTF2LTIyNi42NmwzLjE4LTMuMTljMTQuNi0xNC42IDM0LjAyLTIyLjY0IDU0LjY3LTIyLjY0IDQyLjYyIDAgNzcuMyAzNC42OCA3Ny4zIDc3LjN6IiBmaWxsPSIjZDAwMDUwIi8+PHBhdGggZD0ibTI2NC42NSAyNS44M3YyMjYuNjZsLTExMi41MS0xMTIuNTFjLTE0LjYtMTQuNi0yMi42NC0zNC4wMi0yMi42NC01NC42N3YtOC4wMWMwLTQyLjYyIDM0LjY4LTc3LjMgNzcuMy03Ny4zIDIwLjY1IDAgNDAuMDYgOC4wNCA1NC42NiAyMi42NHoiIGZpbGw9IiNmZjRhNGEiLz48cGF0aCBkPSJtMjEyLjgzIDM2MC4xMnYzMGg1MS44MnYtMzB6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTI2NC42NSAzNjAuMTJ2MzBoMzYuMTRsMzIuMDQtMzB6IiBmaWxsPSIjZmZiZGE5Ii8+PC9nPjwvc3ZnPg==) ([Source](https://www.flaticon.com/free-icon/heart_3555817)) 1260 | ```markdown 1261 | ![Safe](https://img.shields.io/badge/Stay-Safe-red?logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNTEwIDUxMCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCA1MTAgNTEwIiB3aWR0aD0iNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnPjxnPjxwYXRoIGQ9Im0xNzQuNjEgMzAwYy0yMC41OCAwLTQwLjU2IDYuOTUtNTYuNjkgMTkuNzJsLTExMC4wOSA4NS43OTd2MTA0LjQ4M2g1My41MjlsNzYuNDcxLTY1aDEyNi44MnYtMTQ1eiIgZmlsbD0iI2ZmZGRjZSIvPjwvZz48cGF0aCBkPSJtNTAyLjE3IDI4NC43MmMwIDguOTUtMy42IDE3Ljg5LTEwLjc4IDI0LjQ2bC0xNDguNTYgMTM1LjgyaC03OC4xOHYtODVoNjguMThsMTE0LjM0LTEwMC4yMWMxMi44Mi0xMS4yMyAzMi4wNi0xMC45MiA0NC41LjczIDcgNi41NSAxMC41IDE1LjM4IDEwLjUgMjQuMnoiIGZpbGw9IiNmZmNjYmQiLz48cGF0aCBkPSJtMzMyLjgzIDM0OS42M3YxMC4zN2gtNjguMTh2LTYwaDE4LjU1YzI3LjQxIDAgNDkuNjMgMjIuMjIgNDkuNjMgNDkuNjN6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTM5OS44IDc3LjN2OC4wMWMwIDIwLjY1LTguMDQgNDAuMDctMjIuNjQgNTQuNjdsLTExMi41MSAxMTIuNTF2LTIyNi42NmwzLjE4LTMuMTljMTQuNi0xNC42IDM0LjAyLTIyLjY0IDU0LjY3LTIyLjY0IDQyLjYyIDAgNzcuMyAzNC42OCA3Ny4zIDc3LjN6IiBmaWxsPSIjZDAwMDUwIi8+PHBhdGggZD0ibTI2NC42NSAyNS44M3YyMjYuNjZsLTExMi41MS0xMTIuNTFjLTE0LjYtMTQuNi0yMi42NC0zNC4wMi0yMi42NC01NC42N3YtOC4wMWMwLTQyLjYyIDM0LjY4LTc3LjMgNzcuMy03Ny4zIDIwLjY1IDAgNDAuMDYgOC4wNCA1NC42NiAyMi42NHoiIGZpbGw9IiNmZjRhNGEiLz48cGF0aCBkPSJtMjEyLjgzIDM2MC4xMnYzMGg1MS44MnYtMzB6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTI2NC42NSAzNjAuMTJ2MzBoMzYuMTRsMzIuMDQtMzB6IiBmaWxsPSIjZmZiZGE5Ii8+PC9nPjwvc3ZnPg==) 1262 | ``` 1263 | 1264 | ![Info](https://img.shields.io/badge/Project-Info-blue?style=flat-square&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggc3R5bGU9ImZpbGw6IzBBNEVBRjsiIGQ9Ik0yNTYsNTEyYy02OC4zOCwwLTEzMi42NjctMjYuNjI5LTE4MS4wMi03NC45OEMyNi42MjksMzg4LjY2NywwLDMyNC4zOCwwLDI1Ng0KCVMyNi42MjksMTIzLjMzMyw3NC45OCw3NC45OEMxMjMuMzMzLDI2LjYyOSwxODcuNjIsMCwyNTYsMHMxMzIuNjY3LDI2LjYyOSwxODEuMDIsNzQuOThDNDg1LjM3MSwxMjMuMzMzLDUxMiwxODcuNjIsNTEyLDI1Ng0KCXMtMjYuNjI5LDEzMi42NjctNzQuOTgsMTgxLjAyQzM4OC42NjcsNDg1LjM3MSwzMjQuMzgsNTEyLDI1Niw1MTJ6Ii8+DQo8cGF0aCBzdHlsZT0iZmlsbDojMDYzRThCOyIgZD0iTTQzNy4wMiw3NC45OEMzODguNjY3LDI2LjYyOSwzMjQuMzgsMCwyNTYsMHY1MTJjNjguMzgsMCwxMzIuNjY3LTI2LjYyOSwxODEuMDItNzQuOTgNCglDNDg1LjM3MSwzODguNjY3LDUxMiwzMjQuMzgsNTEyLDI1NlM0ODUuMzcxLDEyMy4zMzMsNDM3LjAyLDc0Ljk4eiIvPg0KPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0yNTYsMTg1Yy0zMC4zMjcsMC01NS0yNC42NzMtNTUtNTVzMjQuNjczLTU1LDU1LTU1czU1LDI0LjY3Myw1NSw1NVMyODYuMzI3LDE4NSwyNTYsMTg1eiBNMzAxLDM5NQ0KCVYyMTVIMTkxdjMwaDMwdjE1MGgtMzB2MzBoMTQwdi0zMEgzMDF6Ii8+DQo8Zz4NCgk8cGF0aCBzdHlsZT0iZmlsbDojQ0NFRkZGOyIgZD0iTTI1NiwxODVjMzAuMzI3LDAsNTUtMjQuNjczLDU1LTU1cy0yNC42NzMtNTUtNTUtNTVWMTg1eiIvPg0KCTxwb2x5Z29uIHN0eWxlPSJmaWxsOiNDQ0VGRkY7IiBwb2ludHM9IjMwMSwzOTUgMzAxLDIxNSAyNTYsMjE1IDI1Niw0MjUgMzMxLDQyNSAzMzEsMzk1IAkiLz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K) ([Source](https://www.flaticon.com/free-icon/info_785822)) 1265 | ```markdown 1266 | ![Info](https://img.shields.io/badge/Project-Info-blue?style=flat-square&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggc3R5bGU9ImZpbGw6IzBBNEVBRjsiIGQ9Ik0yNTYsNTEyYy02OC4zOCwwLTEzMi42NjctMjYuNjI5LTE4MS4wMi03NC45OEMyNi42MjksMzg4LjY2NywwLDMyNC4zOCwwLDI1Ng0KCVMyNi42MjksMTIzLjMzMyw3NC45OCw3NC45OEMxMjMuMzMzLDI2LjYyOSwxODcuNjIsMCwyNTYsMHMxMzIuNjY3LDI2LjYyOSwxODEuMDIsNzQuOThDNDg1LjM3MSwxMjMuMzMzLDUxMiwxODcuNjIsNTEyLDI1Ng0KCXMtMjYuNjI5LDEzMi42NjctNzQuOTgsMTgxLjAyQzM4OC42NjcsNDg1LjM3MSwzMjQuMzgsNTEyLDI1Niw1MTJ6Ii8+DQo8cGF0aCBzdHlsZT0iZmlsbDojMDYzRThCOyIgZD0iTTQzNy4wMiw3NC45OEMzODguNjY3LDI2LjYyOSwzMjQuMzgsMCwyNTYsMHY1MTJjNjguMzgsMCwxMzIuNjY3LTI2LjYyOSwxODEuMDItNzQuOTgNCglDNDg1LjM3MSwzODguNjY3LDUxMiwzMjQuMzgsNTEyLDI1NlM0ODUuMzcxLDEyMy4zMzMsNDM3LjAyLDc0Ljk4eiIvPg0KPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0yNTYsMTg1Yy0zMC4zMjcsMC01NS0yNC42NzMtNTUtNTVzMjQuNjczLTU1LDU1LTU1czU1LDI0LjY3Myw1NSw1NVMyODYuMzI3LDE4NSwyNTYsMTg1eiBNMzAxLDM5NQ0KCVYyMTVIMTkxdjMwaDMwdjE1MGgtMzB2MzBoMTQwdi0zMEgzMDF6Ii8+DQo8Zz4NCgk8cGF0aCBzdHlsZT0iZmlsbDojQ0NFRkZGOyIgZD0iTTI1NiwxODVjMzAuMzI3LDAsNTUtMjQuNjczLDU1LTU1cy0yNC42NzMtNTUtNTUtNTVWMTg1eiIvPg0KCTxwb2x5Z29uIHN0eWxlPSJmaWxsOiNDQ0VGRkY7IiBwb2ludHM9IjMwMSwzOTUgMzAxLDIxNSAyNTYsMjE1IDI1Niw0MjUgMzMxLDQyNSAzMzEsMzk1IAkiLz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K) 1267 | ``` 1268 | 1269 | ![Telegram](https://img.shields.io/badge/Join-Telegram-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOS40MTcgMTUuMTgxLS4zOTcgNS41ODRjLjU2OCAwIC44MTQtLjI0NCAxLjEwOS0uNTM3bDIuNjYzLTIuNTQ1IDUuNTE4IDQuMDQxYzEuMDEyLjU2NCAxLjcyNS4yNjcgMS45OTgtLjkzMWwzLjYyMi0xNi45NzIuMDAxLS4wMDFjLjMyMS0xLjQ5Ni0uNTQxLTIuMDgxLTEuNTI3LTEuNzE0bC0yMS4yOSA4LjE1MWMtMS40NTMuNTY0LTEuNDMxIDEuMzc0LS4yNDcgMS43NDFsNS40NDMgMS42OTMgMTIuNjQzLTcuOTExYy41OTUtLjM5NCAxLjEzNi0uMTc2LjY5MS4yMTh6IiBmaWxsPSIjMDM5YmU1Ii8+PC9zdmc+) ([Source](https://www.flaticon.com/free-icon/telegram_2111644)) 1270 | ```markdown 1271 | ![Telegram](https://img.shields.io/badge/Join-Telegram-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOS40MTcgMTUuMTgxLS4zOTcgNS41ODRjLjU2OCAwIC44MTQtLjI0NCAxLjEwOS0uNTM3bDIuNjYzLTIuNTQ1IDUuNTE4IDQuMDQxYzEuMDEyLjU2NCAxLjcyNS4yNjcgMS45OTgtLjkzMWwzLjYyMi0xNi45NzIuMDAxLS4wMDFjLjMyMS0xLjQ5Ni0uNTQxLTIuMDgxLTEuNTI3LTEuNzE0bC0yMS4yOSA4LjE1MWMtMS40NTMuNTY0LTEuNDMxIDEuMzc0LS4yNDcgMS43NDFsNS40NDMgMS42OTMgMTIuNjQzLTcuOTExYy41OTUtLjM5NCAxLjEzNi0uMTc2LjY5MS4yMTh6IiBmaWxsPSIjMDM5YmU1Ii8+PC9zdmc+) 1272 | ``` 1273 | 1274 | ![RuboCop](https://img.shields.io/badge/code%20style-Rubocop-red?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHRpdGxlPmZpbGVfdHlwZV9ydWJvY29wPC90aXRsZT48cGF0aCBkPSJNMjcuMDUsMTMuOVYxM2ExLjc5MywxLjc5MywwLDAsMC0xLjgtMS44SDYuNjVBMS43OTMsMS43OTMsMCwwLDAsNC44NSwxM3YuOWExLjUyNSwxLjUyNSwwLDAsMC0uNywxLjJ2Mi40YTEuMzg3LDEuMzg3LDAsMCwwLC43LDEuMnYuOWExLjc5MywxLjc5MywwLDAsMCwxLjgsMS44aDE4LjdhMS43OTMsMS43OTMsMCwwLDAsMS44LTEuOHYtLjlhMS41MjUsMS41MjUsMCwwLDAsLjctMS4yVjE1LjFBMS43NDIsMS43NDIsMCwwLDAsMjcuMDUsMTMuOVoiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMTUuOTUsMmE5LjkyNSw5LjkyNSwwLDAsMC05LjgsOC42aDE5LjZBOS45MjUsOS45MjUsMCwwLDAsMTUuOTUsMloiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cG9seWdvbiBwb2ludHM9IjEzLjA1IDI0IDE4Ljg1IDI0IDE5LjQ1IDI0LjcgMjAuMzUgMjQgMTkuNDUgMjIuOSAxMi40NSAyMi45IDExLjU1IDI0IDEyLjQ1IDI0LjcgMTMuMDUgMjQiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMjMuNTUsMTcuNkg4LjM1YTEuMywxLjMsMCwxLDEsMC0yLjZoMTUuM2ExLjMyNCwxLjMyNCwwLDAsMSwxLjMsMS4zQTEuNDkzLDEuNDkzLDAsMCwxLDIzLjU1LDE3LjZaIiBzdHlsZT0iZmlsbDojZWMxYzI0Ii8+PHBhdGggZD0iTTIzLjA1LDIydjMuOGExLjk2NywxLjk2NywwLDAsMS0xLjksMS45aC0xYS44NjQuODY0LDAsMCwxLS42LS4zbC0xLjItMS42YS42LjYsMCwwLDAtLjYtLjNoLTMuNmEuNzY0Ljc2NCwwLDAsMC0uNS4ybC0xLjMsMS42YS42LjYsMCwwLDEtLjYuM2gtMWExLjk2NywxLjk2NywwLDAsMS0xLjktMS45VjIySDYuNTV2My44YTQuMjI1LDQuMjI1LDAsMCwwLDQuMiw0LjJoMTAuNGE0LjIyNSw0LjIyNSwwLDAsMCw0LjItNC4yVjIyWiIgc3R5bGU9ImZpbGw6I2M1YzVjNSIvPjwvc3ZnPg==) ([Source](https://github.com/vscode-icons/vscode-icons/blob/master/icons/file_type_rubocop.svg)) 1275 | ```markdown 1276 | ![RuboCop](https://img.shields.io/badge/code%20style-Rubocop-red?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHRpdGxlPmZpbGVfdHlwZV9ydWJvY29wPC90aXRsZT48cGF0aCBkPSJNMjcuMDUsMTMuOVYxM2ExLjc5MywxLjc5MywwLDAsMC0xLjgtMS44SDYuNjVBMS43OTMsMS43OTMsMCwwLDAsNC44NSwxM3YuOWExLjUyNSwxLjUyNSwwLDAsMC0uNywxLjJ2Mi40YTEuMzg3LDEuMzg3LDAsMCwwLC43LDEuMnYuOWExLjc5MywxLjc5MywwLDAsMCwxLjgsMS44aDE4LjdhMS43OTMsMS43OTMsMCwwLDAsMS44LTEuOHYtLjlhMS41MjUsMS41MjUsMCwwLDAsLjctMS4yVjE1LjFBMS43NDIsMS43NDIsMCwwLDAsMjcuMDUsMTMuOVoiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMTUuOTUsMmE5LjkyNSw5LjkyNSwwLDAsMC05LjgsOC42aDE5LjZBOS45MjUsOS45MjUsMCwwLDAsMTUuOTUsMloiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cG9seWdvbiBwb2ludHM9IjEzLjA1IDI0IDE4Ljg1IDI0IDE5LjQ1IDI0LjcgMjAuMzUgMjQgMTkuNDUgMjIuOSAxMi40NSAyMi45IDExLjU1IDI0IDEyLjQ1IDI0LjcgMTMuMDUgMjQiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMjMuNTUsMTcuNkg4LjM1YTEuMywxLjMsMCwxLDEsMC0yLjZoMTUuM2ExLjMyNCwxLjMyNCwwLDAsMSwxLjMsMS4zQTEuNDkzLDEuNDkzLDAsMCwxLDIzLjU1LDE3LjZaIiBzdHlsZT0iZmlsbDojZWMxYzI0Ii8+PHBhdGggZD0iTTIzLjA1LDIydjMuOGExLjk2NywxLjk2NywwLDAsMS0xLjksMS45aC0xYS44NjQuODY0LDAsMCwxLS42LS4zbC0xLjItMS42YS42LjYsMCwwLDAtLjYtLjNoLTMuNmEuNzY0Ljc2NCwwLDAsMC0uNS4ybC0xLjMsMS42YS42LjYsMCwwLDEtLjYuM2gtMWExLjk2NywxLjk2NywwLDAsMS0xLjktMS45VjIySDYuNTV2My44YTQuMjI1LDQuMjI1LDAsMCwwLDQuMiw0LjJoMTAuNGE0LjIyNSw0LjIyNSwwLDAsMCw0LjItNC4yVjIyWiIgc3R5bGU9ImZpbGw6I2M1YzVjNSIvPjwvc3ZnPg==) 1277 | ``` 1278 | 1279 | ---- 1280 | 1281 | ## Random 1282 | ### Ages 20-30... 1283 | [![ForTheBadge 20-30](http://ForTheBadge.com/images/badges/ages-20-30.svg)](http://ForTheBadge.com) 1284 | ```markdown 1285 | [![ForTheBadge 20-30](http://ForTheBadge.com/images/badges/ages-20-30.svg)](http://ForTheBadge.com) 1286 | ``` 1287 | ### Tweeting 1288 | ![Tweeting](https://img.shields.io/twitter/url/http/shields.io.svg?style=social) 1289 | ```markdown 1290 | ![Tweeting](https://img.shields.io/twitter/url/http/shields.io.svg?style=social) 1291 | ``` 1292 | [![Twitter Followers](https://badgen.net/twitter/follow/javascript)](https://twitter.com/javascript) 1293 | ```markdown 1294 | [![Twitter Followers](https://badgen.net/twitter/follow/javascript)](https://twitter.com/javascript) 1295 | ``` 1296 | ### Built by... 1297 | [![ForTheBadge built-by-developers](http://ForTheBadge.com/images/badges/built-by-developers.svg)](https://GitHub.com/Naereen/) 1298 | ```markdown 1299 | [![ForTheBadge built-by-developers](http://ForTheBadge.com/images/badges/built-by-developers.svg)](https://GitHub.com/Naereen/) 1300 | ``` 1301 | 1302 | ### Built with... 1303 | [![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/Naereen/) 1304 | ```markdown 1305 | [![ForTheBadge built-with-love](http://ForTheBadge.com/images/badges/built-with-love.svg)](https://GitHub.com/Naereen/) 1306 | ``` 1307 | 1308 | [![ForTheBadge built-with-science](http://ForTheBadge.com/images/badges/built-with-science.svg)](https://GitHub.com/Naereen/) 1309 | ```markdown 1310 | [![ForTheBadge built-with-science](http://ForTheBadge.com/images/badges/built-with-science.svg)](https://GitHub.com/Naereen/) 1311 | ``` 1312 | 1313 | [![ForTheBadge built-with-swag](http://ForTheBadge.com/images/badges/built-with-swag.svg)](https://GitHub.com/Naereen/) 1314 | ```markdown 1315 | [![ForTheBadge built-with-swag](http://ForTheBadge.com/images/badges/built-with-swag.svg)](https://GitHub.com/Naereen/) 1316 | ``` 1317 | 1318 | ### Uses... 1319 | [![ForTheBadge uses-badges](http://ForTheBadge.com/images/badges/uses-badges.svg)](http://ForTheBadge.com) 1320 | ```markdown 1321 | [![ForTheBadge uses-badges](http://ForTheBadge.com/images/badges/uses-badges.svg)](http://ForTheBadge.com) 1322 | ``` 1323 | 1324 | [![ForTheBadge uses-git](http://ForTheBadge.com/images/badges/uses-git.svg)](https://GitHub.com/) 1325 | ```markdown 1326 | [![ForTheBadge uses-git](http://ForTheBadge.com/images/badges/uses-git.svg)](https://GitHub.com/) 1327 | ``` 1328 | 1329 | [![ForTheBadge uses-html](http://ForTheBadge.com/images/badges/uses-html.svg)](http://ForTheBadge.com) 1330 | ```markdown 1331 | [![ForTheBadge uses-html](http://ForTheBadge.com/images/badges/uses-html.svg)](http://ForTheBadge.com) 1332 | ``` 1333 | 1334 | [![ForTheBadge uses-css](http://ForTheBadge.com/images/badges/uses-css.svg)](http://ForTheBadge.com) 1335 | ```markdown 1336 | [![ForTheBadge uses-css](http://ForTheBadge.com/images/badges/uses-css.svg)](http://ForTheBadge.com) 1337 | ``` 1338 | 1339 | [![ForTheBadge uses-js](http://ForTheBadge.com/images/badges/uses-js.svg)](http://ForTheBadge.com) 1340 | ```markdown 1341 | [![ForTheBadge uses-js](http://ForTheBadge.com/images/badges/uses-js.svg)](http://ForTheBadge.com) 1342 | ``` 1343 | 1344 | ### Fun 1345 | [![ForTheBadge makes-people-smile](http://ForTheBadge.com/images/badges/makes-people-smile.svg)](http://ForTheBadge.com) 1346 | ```markdown 1347 | [![ForTheBadge makes-people-smile](http://ForTheBadge.com/images/badges/makes-people-smile.svg)](http://ForTheBadge.com) 1348 | ``` 1349 | 1350 | [![ForTheBadge powered-by-electricity](http://ForTheBadge.com/images/badges/powered-by-electricity.svg)](http://ForTheBadge.com) 1351 | ```markdown 1352 | [![ForTheBadge powered-by-electricity](http://ForTheBadge.com/images/badges/powered-by-electricity.svg)](http://ForTheBadge.com) 1353 | ``` 1354 | 1355 | [![ForTheBadge winter-is-coming](http://ForTheBadge.com/images/badges/winter-is-coming.svg)](http://ForTheBadge.com) 1356 | ```markdown 1357 | [![ForTheBadge winter-is-coming](http://ForTheBadge.com/images/badges/winter-is-coming.svg)](http://ForTheBadge.com) 1358 | ``` 1359 | 1360 | ---- 1361 | 1362 | ## References ? :notebook: 1363 | - The powerful [Shields.io](https://shields.io) API and website :rocket: 1364 | - The nice [LicenseButtons.net](https://licensebuttons.net/) website for licence badges :scroll: 1365 | - This repo [open-source-badges](https://github.com/ellerbrock/open-source-badges/) by [@ellerbrock](https://github.com/ellerbrock), for open-source badges :books: 1366 | - This small repo [awesome-badges](https://github.com/bevacqua/awesome-badges) by [@bevacqua](https://github.com/bevacqua/), for awesome and meta badges :curly_loop: 1367 | - [Repology.org](https://repology.org/) has one huge badge to track your project's distribution and few smaller ones. For example, [the `binutils` project badge](https://repology.org/project/binutils/badges). 1368 | - And of course, the magical [ForTheBadge.com](http://ForTheBadge.com/) website for random badges :sparkles: 1369 | 1370 | ## TODO :boom: ? 1371 | - [X] Finish this list 1372 | - [X] Update link for the *real resource* that should get linked to 1373 | - [X] Update all my README.md to add nice badges 1374 | 1375 | ## Issues :sweat_drops: 1376 | - [ ] Smaller size (badge size) for some [ForTheBadge.com](http://ForTheBadge.com) badges? (with-science, winter-is-coming, made-with-python, all the creative-commons) 1377 | 1378 | ## Possible TODO? :light_rail: 1379 | - [ ] Download here a copy of every png/svg file, *only* for the static badges 1380 | - [ ] Host the badges in this repo, and not on an external web service ? 1381 | 1382 | ## License ? :scroll: [![GitHub license](https://img.shields.io/github/license/Naereen/badges.svg)](https://github.com/Naereen/badges/blob/master/LICENSE) 1383 | [MIT Licensed](https://lbesson.mit-license.org/) (file [LICENSE](LICENSE)). 1384 | © [Lilian Besson](https://GitHub.com/Naereen) and contributors, 2016-23. 1385 | 1386 | [![Awesome Badges](https://img.shields.io/badge/badges-awesome-green.svg)](https://github.com/Naereen/badges) 1387 | [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/badges/graphs/commit-activity) 1388 | [![Ask Me Anything !](https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg)](https://GitHub.com/Naereen/ama) 1389 | [![Open Source Love svg3](https://badges.frapsoft.com/os/v3/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/) 1390 | 1391 | [![ForTheBadge built-with-swag](http://ForTheBadge.com/images/badges/built-with-swag.svg)](https://GitHub.com/Naereen/) 1392 | 1393 | [![ForTheBadge uses-badges](http://ForTheBadge.com/images/badges/uses-badges.svg)](http://ForTheBadge.com) 1394 | [![ForTheBadge uses-git](http://ForTheBadge.com/images/badges/uses-git.svg)](https://GitHub.com/) 1395 | 1396 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | List of Badges, in reStructuredText 2 | =================================== 3 | 4 | A list of badges, with their `reStructuredText `__ 5 | code, that can be included in a ``README.rst`` file for a GitHub or Bitbucket project. 6 | 7 | The same file for `Markdown `__ code 8 | is available here: `README.md `__. 9 | 10 | -------------- 11 | 12 | Generic 13 | ------- 14 | 15 | |Generic badge| 16 | 17 | .. code:: rst 18 | 19 | |Generic badge| 20 | 21 | .. |Generic badge| image:: https://img.shields.io/badge/--.svg 22 | :target: 23 | 24 | -------------- 25 | 26 | Useful 27 | ------ 28 | 29 | Maintained? 30 | ~~~~~~~~~~~ 31 | 32 | Maintained: |Maintenance yes| 33 | 34 | .. code:: rst 35 | 36 | |Maintenance yes| 37 | 38 | .. |Maintenance yes| image:: https://img.shields.io/badge/Maintained%3F-yes-green.svg 39 | :target: https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity 40 | 41 | Not maintained: |Maintenance no| 42 | 43 | .. code:: rst 44 | 45 | |Maintenance no| 46 | 47 | .. |Maintenance no| image:: https://img.shields.io/badge/Maintained%3F-no-red.svg 48 | :target: https://bitbucket.org/lbesson/ansi-colors 49 | 50 | Worse: |Maintenance not intended| 51 | 52 | .. code:: rst 53 | 54 | |Maintenance not intended| 55 | 56 | .. |Maintenance not intended| image:: http://unmaintained.tech/badge.svg 57 | :target: http://unmaintained.tech/ 58 | 59 | `Website up/down `__ 60 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 61 | 62 | |Website shields.io| 63 | 64 | .. code:: rst 65 | 66 | |Website shields.io| 67 | 68 | .. |Website shields.io| image:: https://img.shields.io/website-up-down-green-red/http/shields.io.svg 69 | :target: http://shields.io/ 70 | 71 | |Website monip.org| 72 | 73 | .. code:: rst 74 | 75 | |Website monip.org| 76 | 77 | .. |Website monip.org| image:: https://img.shields.io/website-up-down-green-red/http/monip.org.svg 78 | :target: http://monip.org/ 79 | 80 | |Website perso.crans.org| 81 | 82 | .. code:: rst 83 | 84 | |Website perso.crans.org| 85 | 86 | .. |Website perso.crans.org| image:: https://img.shields.io/website-up-down-green-red/http/perso.crans.org.svg 87 | :target: http://perso.crans.org/ 88 | 89 | |Website naereen.github.io| 90 | 91 | .. code:: rst 92 | 93 | |Website naereen.github.io| 94 | 95 | .. |Website naereen.github.io| image:: https://img.shields.io/website-up-down-green-red/https/naereen.github.io.svg 96 | :target: https://naereen.github.io/ 97 | 98 | |Website lbesson.bitbucket.org| 99 | 100 | .. code:: rst 101 | 102 | |Website lbesson.bitbucket.org| 103 | 104 | .. |Website lbesson.bitbucket.org| image:: https://img.shields.io/website-up-down-green-red/http/lbesson.bitbucket.org.svg 105 | :target: http://lbesson.bitbucket.org/ 106 | 107 | |Website cv.lbesson.qc.to| 108 | 109 | .. code:: rst 110 | 111 | |Website cv.lbesson.qc.to| 112 | 113 | .. |Website cv.lbesson.qc.to| image:: https://img.shields.io/website-up-down-green-red/http/cv.lbesson.qc.to.svg 114 | :target: http://cv.lbesson.qc.to/ 115 | 116 | |Website fakesite.invalid| 117 | 118 | .. code:: rst 119 | 120 | |Website fakesite.invalid| 121 | 122 | .. |Website fakesite.invalid| image:: https://img.shields.io/website-up-down-green-red/http/fakesite.invalid.svg 123 | :target: http://fakesite.invalid/ 124 | 125 | -------------- 126 | 127 | Feedback 128 | -------- 129 | 130 | *"Ask me anything"* in English 131 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 132 | 133 | |Ask Me Anything !| 134 | 135 | .. code:: rst 136 | 137 | |Ask Me Anything !| 138 | 139 | .. |Ask Me Anything !| image:: https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg 140 | :target: https://GitHub.com/Naereen/ama 141 | 142 | *"Demandez moi n'importe quoi"* in French 143 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 144 | 145 | |Demandez moi n'importe quoi !| 146 | 147 | .. code:: rst 148 | 149 | |Demandez moi n'importe quoi !| 150 | 151 | .. |Demandez moi n'importe quoi !| image:: https://img.shields.io/badge/Demandez%20moi-n'%20importe%20quoi-1abc9c.svg 152 | :target: https://GitHub.com/Naereen/ama.fr 153 | 154 | -------------- 155 | 156 | `Python `__ related 157 | -------------------------------------------- 158 | 159 | |forthebadge made-with-python| 160 | 161 | .. code:: rst 162 | 163 | |forthebadge made-with-python| 164 | 165 | .. |forthebadge made-with-python| image:: http://ForTheBadge.com/images/badges/made-with-python.svg 166 | :target: https://www.python.org/ 167 | 168 | |made-with-python| 169 | 170 | .. code:: rst 171 | 172 | |made-with-python| 173 | 174 | .. |made-with-python| image:: https://img.shields.io/badge/Made%20with-Python-1f425f.svg 175 | :target: https://www.python.org/ 176 | 177 | |made-with-sphinx-doc| 178 | 179 | .. code:: rst 180 | 181 | |made-with-sphinx-doc| 182 | 183 | .. |made-with-sphinx-doc| image:: https://img.shields.io/badge/Made%20with-Sphinx-1f425f.svg 184 | :target: https://www.sphinx-doc.org/ 185 | 186 | -------------- 187 | 188 | `Go `__ related 189 | ---------------------------------- 190 | 191 | |made-with-Go| 192 | 193 | .. code:: markdown 194 | 195 | [![made-with-Go](https://img.shields.io/badge/Made%20with-Go-1f425f.svg)](http://golang.org) 196 | 197 | GitHub go.mod Go version (``/github/go-mod/go-version/:user/:repo``): 198 | |GitHub go.mod Go version of a Go module| 199 | 200 | .. code:: markdown 201 | 202 | [![GitHub go.mod Go version of a Go module](https://img.shields.io/github/go-mod/go-version/gomods/athens.svg)](https://github.com/gomods/athens) 203 | 204 | GoDoc reference (``godoc.org/:user/go/:repo``): |GoDoc reference 205 | example| 206 | 207 | .. code:: markdown 208 | 209 | [![GoDoc reference example](https://img.shields.io/badge/godoc-reference-blue.svg)](https://godoc.org/nanomsg.org/go/mangos/v2) 210 | 211 | `GoReportCard `__ 212 | (``goreportcard.com/badge/github.com/:user/:repo``): |GoReportCard 213 | example| 214 | 215 | .. code:: markdown 216 | 217 | [![GoReportCard example](https://goreportcard.com/badge/github.com/nanomsg/mangos)](https://goreportcard.com/report/github.com/nanomsg/mangos) 218 | 219 | -------------- 220 | 221 | `Markdown `__ related 222 | -------------------------------------------- 223 | 224 | |made-with-Markdown| 225 | 226 | .. code:: rst 227 | 228 | |made-with-Markdown| 229 | 230 | .. |made-with-Markdown| image:: https://img.shields.io/badge/Made%20with-Markdown-1f425f.svg 231 | :target: http://commonmark.org 232 | 233 | |made-with-StrapDown.js| 234 | 235 | .. code:: rst 236 | 237 | |made-with-StrapDown.js| 238 | 239 | .. |made-with-StrapDown.js| image:: https://img.shields.io/badge/Made%20with-StrapDown.js-1f425f.svg 240 | :target: https://GitHub.com/Naereen/StrapDown.js/ 241 | 242 | -------------- 243 | 244 | `LaTeX `__ related 245 | -------------------------------------------------- 246 | 247 | |made-with-latex| 248 | 249 | .. code:: rst 250 | 251 | |made-with-latex| 252 | 253 | .. |made-with-latex| image:: https://img.shields.io/badge/Made%20with-LaTeX-1f425f.svg 254 | :target: https://www.latex-project.org/ 255 | 256 | |made-with-mathjax| 257 | 258 | .. code:: rst 259 | 260 | |made-with-mathjax| 261 | 262 | .. |made-with-mathjax| image:: https://img.shields.io/badge/Made%20with-MathJax-1f425f.svg 263 | :target: https://www.mathjax.org/ 264 | 265 | -------------- 266 | 267 | `PyPI `__ downloads 268 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 269 | 270 | |PyPI download total| 271 | 272 | .. code:: rst 273 | 274 | |PyPI download total| 275 | 276 | .. |PyPI download total| image:: https://img.shields.io/pypi/dt/ansicolortags.svg 277 | :target: https://pypi.python.org/pypi/ansicolortags/ 278 | 279 | |PyPI download month| 280 | 281 | .. code:: rst 282 | 283 | |PyPI download month| 284 | 285 | .. |PyPI download month| image:: https://img.shields.io/pypi/dm/ansicolortags.svg 286 | :target: https://pypi.python.org/pypi/ansicolortags/ 287 | 288 | |PyPI download week| 289 | 290 | .. code:: rst 291 | 292 | |PyPI download week| 293 | 294 | .. |PyPI download week| image:: https://img.shields.io/pypi/dw/ansicolortags.svg 295 | :target: https://pypi.python.org/pypi/ansicolortags/ 296 | 297 | |PyPI download day| 298 | 299 | .. code:: rst 300 | 301 | |PyPI download day| 302 | 303 | .. |PyPI download day| image:: https://img.shields.io/pypi/dd/ansicolortags.svg 304 | :target: https://pypi.python.org/pypi/ansicolortags/ 305 | 306 | `PyPI `__ version 307 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 308 | 309 | |PyPI version fury.io| 310 | 311 | .. code:: rst 312 | 313 | |PyPI version fury.io| 314 | 315 | .. |PyPI version fury.io| image:: https://badge.fury.io/py/ansicolortags.svg 316 | :target: https://pypi.python.org/pypi/ansicolortags/ 317 | 318 | |PyPI version shields.io| 319 | 320 | .. code:: rst 321 | 322 | |PyPI version shields.io| 323 | 324 | .. |PyPI version shields.io| image:: https://img.shields.io/pypi/v/ansicolortags.svg 325 | :target: https://pypi.python.org/pypi/ansicolortags/ 326 | 327 | `PyPI `__ license 328 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 329 | 330 | |PyPI license| 331 | 332 | .. code:: rst 333 | 334 | |PyPI license| 335 | 336 | .. |PyPI license| image:: https://img.shields.io/pypi/l/ansicolortags.svg 337 | :target: https://pypi.python.org/pypi/ansicolortags/ 338 | 339 | `PyPI `__ format 340 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 341 | 342 | |PyPI format| 343 | 344 | .. code:: rst 345 | 346 | |PyPI format| 347 | 348 | .. |PyPI format| image:: https://img.shields.io/pypi/format/ansicolortags.svg 349 | :target: https://pypi.python.org/pypi/ansicolortags/ 350 | 351 | `PyPI `__ python versions 352 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 353 | 354 | |PyPI pyversions| 355 | 356 | .. code:: rst 357 | 358 | |PyPI pyversions| 359 | 360 | .. |PyPI pyversions| image:: https://img.shields.io/pypi/pyversions/ansicolortags.svg 361 | :target: https://pypi.python.org/pypi/ansicolortags/ 362 | 363 | `PyPI `__ implementation 364 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 365 | 366 | |PyPI implementation| 367 | 368 | .. code:: rst 369 | 370 | |PyPI implementation| 371 | 372 | .. |PyPI implementation| image:: https://img.shields.io/pypi/implementation/ansicolortags.svg 373 | :target: https://pypi.python.org/pypi/ansicolortags/ 374 | 375 | `PyPI `__ status 376 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 377 | 378 | |PyPI status| 379 | 380 | .. code:: rst 381 | 382 | |PyPI status| 383 | 384 | .. |PyPI status| image:: https://img.shields.io/pypi/status/ansicolortags.svg 385 | :target: https://pypi.python.org/pypi/ansicolortags/ 386 | 387 | -------------- 388 | 389 | `JavaScript `__ related 390 | ---------------------------------------------------- 391 | 392 | |made-with-javascript| 393 | 394 | .. code:: rst 395 | 396 | |made-with-javascript| 397 | 398 | .. |made-with-JavaScript| image:: https://img.shields.io/badge/Made%20with-JavaScript-1f425f.svg 399 | :target: https://www.javascript.com 400 | 401 | `JSDelivr `__ downloads 402 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 403 | 404 | |jsdelivr downloads official| 405 | 406 | .. code:: rst 407 | 408 | |jsdelivr downloads official| 409 | 410 | .. |jsdelivr downloads official| image:: https://data.jsdelivr.com/v1/package/gh///badge?style=rounded 411 | :target: https://www.jsdelivr.com/package/gh// 412 | 413 | |jsdelivr downloads shields| 414 | 415 | .. code:: rst 416 | 417 | |jsdelivr downloads shields| 418 | 419 | .. |jsdelivr downloads shields| image:: https://img.shields.io/jsdelivr/gh/hm// 420 | :target: https://www.jsdelivr.com/package/gh// 421 | 422 | -------------- 423 | 424 | `GNU Bash `__ 425 | ------------------------------------------------- 426 | 427 | |Bash Shell| 428 | 429 | .. code:: rst 430 | 431 | |Bash Shell| 432 | 433 | .. |Bash Shell| image:: https://badges.frapsoft.com/bash/v1/bash.png?v=103 434 | :target: https://github.com/ellerbrock/open-source-badges/ 435 | 436 | |made-with-bash| 437 | 438 | .. code:: rst 439 | 440 | |made-with-bash| 441 | 442 | .. |made-with-bash| image:: https://img.shields.io/badge/Made%20with-Bash-1f425f.svg 443 | :target: https://www.gnu.org/software/bash/ 444 | 445 | -------------- 446 | 447 | `Microsoft Visual Studio Code `__ 448 | ------------------------------------------------------------------------ 449 | 450 | |version-VSCode-extension| 451 | 452 | .. code:: rst 453 | 454 | |version-VSCode-extension| 455 | 456 | .. |version-VSCode-extension| image:: https://vsmarketplacebadge.apphb.com/version/naereen.makefiles-support-for-vscode.svg 457 | :target: https://marketplace.visualstudio.com/items?itemName=naereen.makefiles-support-for-vscode 458 | 459 | |installs-VSCode-extension| 460 | 461 | .. code:: rst 462 | 463 | |installs-VSCode-extension| 464 | 465 | .. |installs-VSCode-extension| image:: https://vsmarketplacebadge.apphb.com/installs/naereen.makefiles-support-for-vscode.svg 466 | :target: https://marketplace.visualstudio.com/items?itemName=naereen.makefiles-support-for-vscode 467 | 468 | |rating-VSCode-extension| 469 | 470 | .. code:: rst 471 | 472 | |rating-VSCode-extension| 473 | 474 | .. |rating-VSCode-extension| image:: https://vsmarketplacebadge.apphb.com/rating/naereen.makefiles-support-for-vscode.svg 475 | :target: https://marketplace.visualstudio.com/items?itemName=naereen.makefiles-support-for-vscode 476 | 477 | |made-for-VSCode| 478 | 479 | .. code:: rst 480 | 481 | |made-for-VSCode| 482 | 483 | .. |made-for-VSCode| image:: https://img.shields.io/badge/Made%20for-VSCode-1f425f.svg 484 | :target: https://code.visualstudio.com/ 485 | 486 | |open-in-VSCode| 487 | 488 | .. code:: rst 489 | 490 | |open-in-VSCode| 491 | 492 | .. |open-in-VSCode| image:: https://open.vscode.dev/badges/open-in-vscode.svg 493 | :target: https://open.vscode.dev/Naereen/badges 494 | 495 | -------------- 496 | 497 | `Read the Docs `__ status 498 | --------------------------------------------------- 499 | 500 | |Documentation Status| 501 | 502 | .. code:: rst 503 | 504 | |Documentation Status| 505 | 506 | .. |Documentation Status| image:: https://readthedocs.org/projects/ansicolortags/badge/?version=latest 507 | :target: http://ansicolortags.readthedocs.io/?badge=latest 508 | 509 | -------------- 510 | 511 | GitHub related 512 | -------------- 513 | 514 | GitHub license 515 | ~~~~~~~~~~~~~~ 516 | 517 | |GitHub license| 518 | 519 | .. code:: rst 520 | 521 | |GitHub license| 522 | 523 | .. |GitHub license| image:: https://img.shields.io/github/license/Naereen/StrapDown.js.svg 524 | :target: https://github.com/Naereen/StrapDown.js/blob/master/LICENSE 525 | 526 | GitHub versions/tags/commits 527 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 528 | 529 | |GitHub release| 530 | 531 | .. code:: rst 532 | 533 | |GitHub release| 534 | 535 | .. |GitHub release| image:: https://img.shields.io/github/release/Naereen/StrapDown.js.svg 536 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/ 537 | 538 | |GitHub tag| 539 | 540 | .. code:: rst 541 | 542 | |GitHub tag| 543 | 544 | .. |GitHub tag| image:: https://img.shields.io/github/tag/Naereen/StrapDown.js.svg 545 | :target: https://GitHub.com/Naereen/StrapDown.js/tags/ 546 | 547 | |GitHub commits| 548 | 549 | .. code:: rst 550 | 551 | |GitHub commits| 552 | 553 | .. |GitHub commits| image:: https://img.shields.io/github/commits-since/Naereen/StrapDown.js/v1.0.0.svg 554 | :target: https://GitHub.com/Naereen/StrapDown.js/commit/ 555 | 556 | GitHub downloads 557 | ~~~~~~~~~~~~~~~~ 558 | 559 | |Github all releases| 560 | 561 | .. code:: rst 562 | 563 | |Github all releases| 564 | 565 | .. |Github all releases| image:: https://img.shields.io/github/downloads/Naereen/StrapDown.js/total.svg 566 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/) 567 | 568 | |Github releases (by release)| 569 | 570 | .. code:: rst 571 | 572 | [![Github releases (by release](https://img.shields.io/github/downloads/Naereen/StrapDown.js/v1.1/total.svg)](https://GitHub.com/Naereen/StrapDown.js/releases/) 573 | 574 | |Github releases (by Release)| 575 | 576 | .. code:: rst 577 | 578 | |Github Releases (by Release)| 579 | 580 | .. |Github Releases (by Release)| image:: https://img.shields.io/github/downloads/Naereen/StrapDown.js/v1.0.0/total.svg 581 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/) 582 | 583 | |Github releases (by asset)| 584 | 585 | .. code:: rst 586 | 587 | [![Github releases (by asset](https://img.shields.io/github/downloads/Naereen/StrapDown.js/latest/strapdown.min.js)](https://GitHub.com/Naereen/StrapDown.js/releases/) 588 | 589 | GitHub forks 590 | ~~~~~~~~~~~~ 591 | 592 | |GitHub forks| 593 | 594 | .. code:: rst 595 | 596 | |GitHub forks| 597 | 598 | .. |GitHub forks| image:: https://img.shields.io/github/forks/Naereen/StrapDown.js.svg?style=social&label=Fork&maxAge=2592000 599 | :target: https://GitHub.com/Naereen/StrapDown.js/network/ 600 | 601 | GitHub stars 602 | ~~~~~~~~~~~~ 603 | 604 | |GitHub stars| 605 | 606 | .. code:: rst 607 | 608 | |GitHub stars| 609 | 610 | .. |GitHub stars| image:: https://img.shields.io/github/stars/Naereen/StrapDown.js.svg?style=social&label=Star&maxAge=2592000 611 | :target: https://GitHub.com/Naereen/StrapDown.js/stargazers/ 612 | 613 | GitHub watchers 614 | ~~~~~~~~~~~~~~~ 615 | 616 | |GitHub watchers| 617 | 618 | .. code:: rst 619 | 620 | |GitHub watchers| 621 | 622 | .. |GitHub watchers| image:: https://img.shields.io/github/watchers/Naereen/StrapDown.js.svg?style=social&label=Watch&maxAge=2592000 623 | :target: https://GitHub.com/Naereen/StrapDown.js/watchers/ 624 | 625 | GitHub followers 626 | ~~~~~~~~~~~~~~~~ 627 | 628 | |GitHub followers| 629 | 630 | .. code:: rst 631 | 632 | |GitHub followers| 633 | 634 | .. |GitHub followers| image:: https://img.shields.io/github/followers/Naereen.svg?style=social&label=Follow&maxAge=2592000 635 | :target: https://GitHub.com/Naereen?tab=followers 636 | 637 | GitHub contributors 638 | ~~~~~~~~~~~~~~~~~~~ 639 | 640 | |GitHub contributors| 641 | 642 | .. code:: rst 643 | 644 | |GitHub contributors| 645 | 646 | .. |GitHub contributors| image:: https://img.shields.io/github/contributors/Naereen/StrapDown.js.svg 647 | :target: https://GitHub.com/Naereen/StrapDown.js/graphs/contributors/ 648 | 649 | GitHub issues 650 | ~~~~~~~~~~~~~ 651 | 652 | |GitHub issues| 653 | 654 | .. code:: rst 655 | 656 | |GitHub issues| 657 | 658 | .. |GitHub issues| image:: https://img.shields.io/github/issues/Naereen/StrapDown.js.svg 659 | :target: https://GitHub.com/Naereen/StrapDown.js/issues/ 660 | 661 | |GitHub issues-closed| 662 | 663 | .. code:: rst 664 | 665 | |GitHub issues-closed| 666 | 667 | .. |GitHub issues-closed| image:: https://img.shields.io/github/issues-closed/Naereen/StrapDown.js.svg 668 | :target: https://GitHub.com/Naereen/StrapDown.js/issues?q=is%3Aissue+is%3Aclosed 669 | 670 | 671 | 672 | From `isitmaintained.com `_: 673 | 674 | |Average time to resolve an issue| 675 | 676 | .. code:: rst 677 | 678 | |Average time to resolve an issue| 679 | 680 | .. |Average time to resolve an issue| image:: http://isitmaintained.com/badge/resolution/Naereen/badges.svg 681 | :target: http://isitmaintained.com/project/Naereen/badges 682 | 683 | |Percentage of issues still open| 684 | 685 | .. code:: rst 686 | 687 | |Percentage of issues still open| 688 | 689 | .. |Percentage of issues still open| image:: http://isitmaintained.com/badge/open/Naereen/badges.svg 690 | :target: http://isitmaintained.com/project/Naereen/badges 691 | 692 | 693 | GitHub Pull Requests 694 | ~~~~~~~~~~~~~~~~~~~~ 695 | 696 | |GitHub pull-requests| 697 | 698 | .. code:: rst 699 | 700 | |GitHub pull-requests| 701 | 702 | .. |GitHub pull-requests| image:: https://img.shields.io/github/issues-pr/Naereen/StrapDown.js.svg 703 | :target: https://GitHub.com/Naereen/StrapDown.js/pull/ 704 | 705 | |GitHub pull-requests closed| 706 | 707 | .. code:: rst 708 | 709 | |GitHub pull-requests closed| 710 | 711 | .. |GitHub pull-requests closed| image:: https://img.shields.io/github/issues-pr-closed/Naereen/StrapDown.js.svg 712 | :target: https://GitHub.com/Naereen/StrapDown.js/pull/ 713 | 714 | 715 | GitHub Make a Pull Requests 716 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 717 | 718 | |GitHub make-a-pull-requests| 719 | 720 | .. code:: rst 721 | 722 | |GitHub make-a-pull-requests| 723 | 724 | .. |GitHub make-a-pull-requests| image:: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square 725 | :target: http://makeapullrequest.com 726 | 727 | GitHub file size 728 | ~~~~~~~~~~~~~~~~ 729 | 730 | |Only 32 Kb| 731 | 732 | .. code:: rst 733 | 734 | |Only 32 Kb| 735 | 736 | .. |Only 32 Kb| image:: https://badge-size.herokuapp.com/Naereen/StrapDown.js/master/strapdown.min.js 737 | :target: https://github.com/Naereen/StrapDown.js/blob/master/strapdown.min.js 738 | 739 | GitHub version 740 | ~~~~~~~~~~~~~~ 741 | 742 | |GitHub version| 743 | 744 | .. code:: rst 745 | 746 | |GitHub version| 747 | 748 | .. |GitHub version| image:: https://badge.fury.io/gh/Naereen%2FStrapDown.js.svg 749 | :target: https://github.com/Naereen/StrapDown.js 750 | 751 | GitHub hits 752 | ~~~~~~~~~~~ 753 | 754 | |HitCount| 755 | 756 | .. code:: rst 757 | 758 | |HitCount| 759 | 760 | .. |HitCount| image:: http://hits.dwyl.io/Naereen/badges.svg 761 | :target: http://hits.dwyl.io/Naereen/badges 762 | 763 | 764 | -------------- 765 | 766 | Bitbucket related 767 | ----------------- 768 | 769 | Bitbucket issues 770 | ~~~~~~~~~~~~~~~~ 771 | 772 | |Bitbucket issues| 773 | 774 | .. code:: rst 775 | 776 | |Bitbucket issues| 777 | 778 | .. |Bitbucket issues| image:: https://img.shields.io/bitbucket/issues/lbesson/bin.svg 779 | :target: https://Bitbucket.org/lbesson/bin/issues/ 780 | 781 | Bitbucket Watchers 782 | ~~~~~~~~~~~~~~~~~~ 783 | 784 | .. raw:: html 785 | 786 | 787 | 788 | .. code:: rst 789 | 790 | .. raw:: html 791 | 792 | 793 | 794 | 795 | Bitbucket Fork 796 | ~~~~~~~~~~~~~~ 797 | 798 | .. raw:: html 799 | 800 | 801 | 802 | .. code:: rst 803 | 804 | .. raw:: html 805 | 806 | 807 | 808 | 809 | Bitbucket Follow 810 | ~~~~~~~~~~~~~~~~ 811 | 812 | .. raw:: html 813 | 814 | 815 | 816 | .. code:: rst 817 | 818 | .. raw:: html 819 | 820 | 821 | 822 | 823 | -------------- 824 | 825 | `PackageControl `__ related 826 | ------------------------------------------------------- 827 | 828 | |Package Control total downloads| 829 | 830 | .. code:: rst 831 | 832 | |Package Control total downloads| 833 | 834 | .. |Package Control total downloads| image:: https://img.shields.io/packagecontrol/dt/SwitchDictionary.svg 835 | :target: https://packagecontrol.io/packages/SwitchDictionary 836 | 837 | |Package Control month downloads| 838 | 839 | .. code:: rst 840 | 841 | |Package Control month downloads| 842 | 843 | .. |Package Control month downloads| image:: https://img.shields.io/packagecontrol/dm/SwitchDictionary.svg 844 | :target: https://packagecontrol.io/packages/SwitchDictionary 845 | 846 | |Package Control week downloads| 847 | 848 | .. code:: rst 849 | 850 | |Package Control week downloads| 851 | 852 | .. |Package Control week downloads| image:: https://img.shields.io/packagecontrol/dw/SwitchDictionary.svg 853 | :target: https://packagecontrol.io/packages/SwitchDictionary 854 | 855 | |Package Control day downloads| 856 | 857 | .. code:: rst 858 | 859 | |Package Control day downloads| 860 | 861 | .. |Package Control day downloads| image:: https://img.shields.io/packagecontrol/dd/SwitchDictionary.svg 862 | :target: https://packagecontrol.io/packages/SwitchDictionary 863 | 864 | -------------- 865 | 866 | `Google Analytics `__ 867 | ---------------------------------------------------- 868 | 869 | **Warning**: don't forget to change your Google Analytics code, from 870 | ``UA-XXXXXXXX-XX`` to yours! 871 | 872 | |Analytics pixel| 873 | 874 | .. code:: rst 875 | 876 | |Analytics pixel| 877 | 878 | .. |Analytics pixel| image:: https://ga-beacon.appspot.com/UA-38514290-17/github.com/Naereen/badges/README.md?pixel 879 | :target: https://GitHub.com/Naereen/badges/ 880 | 881 | |Analytics img| 882 | 883 | .. code:: rst 884 | 885 | |Analytics img| 886 | 887 | .. |Analytics img| image:: https://ga-beacon.appspot.com/UA-38514290-17/github.com/Naereen/badges/README.md 888 | :target: https://GitHub.com/Naereen/badges/ 889 | 890 | Licenses 891 | -------- 892 | 893 | MIT License 894 | ~~~~~~~~~~~ 895 | 896 | |MIT license| 897 | 898 | .. code:: rst 899 | 900 | |MIT license| 901 | 902 | .. |MIT license| image:: https://img.shields.io/badge/License-MIT-blue.svg 903 | :target: https://lbesson.mit-license.org/ 904 | 905 | GPLv3 License 906 | ~~~~~~~~~~~~~ 907 | 908 | |GPLv3 license| 909 | 910 | .. code:: rst 911 | 912 | |GPLv3 license| 913 | 914 | .. |GPLv3 license| image:: https://img.shields.io/badge/License-GPLv3-blue.svg 915 | :target: http://perso.crans.org/besson/LICENSE.html 916 | 917 | |GPL license| 918 | 919 | .. code:: rst 920 | 921 | |GPL license| 922 | 923 | .. |GPL license| image:: https://img.shields.io/badge/License-GPL-blue.svg 924 | :target: http://perso.crans.org/besson/LICENSE.html 925 | 926 | Unlicense 927 | ~~~~~~~~~~~~~ 928 | 929 | |Unlicense| 930 | 931 | .. code:: rst 932 | 933 | |Unlicense| 934 | 935 | .. |Unlicense| image:: https://img.shields.io/badge/License-Unlicense-blue.svg 936 | :target: https://unlicense.org/ 937 | 938 | `Creative Commons Licenses `__ 939 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 940 | 941 | |CC-0 license| 942 | 943 | .. code:: rst 944 | 945 | |CC-0 license| 946 | 947 | .. |CC-0 license| image:: https://img.shields.io/badge/License-CC--0-blue.svg 948 | :target: https://creativecommons.org/licenses/by-nd/4.0 949 | 950 | |forthebadge cc-0| 951 | 952 | .. code:: rst 953 | 954 | |forthebadge cc-0| 955 | 956 | .. |forthebadge cc-0| image:: http://ForTheBadge.com/images/badges/cc-0.svg 957 | :target: http://ForTheBadge.com 958 | 959 | |licensebuttons by-nd| 960 | 961 | .. code:: rst 962 | 963 | |licensebuttons by-nd| 964 | 965 | .. |licensebuttons by-nd| image:: https://licensebuttons.net/l/by-nd/3.0/88x31.png 966 | :target: https://creativecommons.org/licenses/by-nd/4.0 967 | 968 | |forthebadge cc-by-nd| 969 | 970 | .. code:: rst 971 | 972 | |forthebadge cc-by-nd| 973 | 974 | .. |forthebadge cc-by-nd| image:: http://ForTheBadge.com/images/badges/cc-by-nd.svg 975 | :target: https://creativecommons.org/licenses/by-nd/4.0 976 | 977 | |licensebuttons by| 978 | 979 | .. code:: rst 980 | 981 | |licensebuttons by| 982 | 983 | .. |licensebuttons by| image:: https://licensebuttons.net/l/by/3.0/88x31.png 984 | :target: https://creativecommons.org/licenses/by/4.0 985 | 986 | |forthebadge cc-by| 987 | 988 | .. code:: rst 989 | 990 | |forthebadge cc-by| 991 | 992 | .. |forthebadge cc-by| image:: http://ForTheBadge.com/images/badges/cc-by.svg 993 | :target: https://creativecommons.org/licenses/by/4.0 994 | 995 | |licensebuttons by-nc-sa| 996 | 997 | .. code:: rst 998 | 999 | |licensebuttons by-nc-sa| 1000 | 1001 | .. |licensebuttons by-nc-sa| image:: https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png 1002 | :target: https://creativecommons.org/licenses/by-nc-sa/4.0 1003 | 1004 | |forthebadge cc-nc-sa| 1005 | 1006 | .. code:: rst 1007 | 1008 | |forthebadge cc-nc-sa| 1009 | 1010 | .. |forthebadge cc-nc-sa| image:: http://ForTheBadge.com/images/badges/cc-nc-sa.svg 1011 | :target: https://creativecommons.org/licenses/by-nc-sa/4.0 1012 | 1013 | |licensebuttons by-nc| 1014 | 1015 | .. code:: rst 1016 | 1017 | |licensebuttons by-nc| 1018 | 1019 | .. |licensebuttons by-nc| image:: https://licensebuttons.net/l/by-nc/3.0/88x31.png 1020 | :target: https://creativecommons.org/licenses/by-nc/4.0 1021 | 1022 | |forthebadge cc-nc| 1023 | 1024 | .. code:: rst 1025 | 1026 | |forthebadge cc-nc| 1027 | 1028 | .. |forthebadge cc-nc| image:: http://ForTheBadge.com/images/badges/cc-nc.svg 1029 | :target: https://creativecommons.org/licenses/by-nc/4.0 1030 | 1031 | |licensebuttons by-sa| 1032 | 1033 | .. code:: rst 1034 | 1035 | |licensebuttons by-sa| 1036 | 1037 | .. |licensebuttons by-sa| image:: https://licensebuttons.net/l/by-sa/3.0/88x31.png 1038 | :target: https://creativecommons.org/licenses/by-sa/4.0 1039 | 1040 | |forthebadge cc-sa| 1041 | 1042 | .. code:: rst 1043 | 1044 | |forthebadge cc-sa| 1045 | 1046 | .. |forthebadge cc-sa| image:: http://ForTheBadge.com/images/badges/cc-sa.svg 1047 | :target: https://creativecommons.org/licenses/by-sa/4.0 1048 | 1049 | The `Creative Commons License Buttons site `_ 1050 | also provides a customizable way to access badges in various colours or sizes. 1051 | 1052 | |licensebuttons by-nc-sa-white| 1053 | 1054 | .. code:: rst 1055 | 1056 | |licensebuttons by-nc-sa-white| 1057 | 1058 | .. |licensebuttons by-nc-sa-white| image:: https://licensebuttons.net/i/l/by-nc-sa/ffffff/00/00/00/88x31.png 1059 | :target: https://creativecommons.org/licenses/by-nc-sa/2.0 1060 | 1061 | |licensebuttons by-nc-sa-black| 1062 | 1063 | .. code:: rst 1064 | 1065 | |licensebuttons by-nc-sa-black| 1066 | 1067 | .. |licensebuttons by-nc-sa-black| image:: https://licensebuttons.net/i/l/by-nc-sa/000000/ff/ff/ff/88x31.png 1068 | :target: https://creativecommons.org/licenses/by-nc-sa/2.0 1069 | 1070 | |licensebuttons by-nc-sa-magenta| 1071 | 1072 | .. code:: rst 1073 | 1074 | |licensebuttons by-nc-sa-magenta| 1075 | 1076 | .. |licensebuttons by-nc-sa-magenta| image:: https://licensebuttons.net/i/l/by-nc-sa/eeeeee/ff/00/ff/88x31.png 1077 | :target: https://creativecommons.org/licenses/by-nc-sa/2.0 1078 | 1079 | -------------- 1080 | 1081 | Simple Icons 1082 | ------------ 1083 | 1084 | Any `shields.io `_ badge can use a logo image by adding the 1085 | ``logo`` query parameter to the name of any logo suported by 1086 | `Simple Icons `_. 1087 | 1088 | |simpleicons vim| 1089 | 1090 | .. code:: rst 1091 | 1092 | |simpleicons vim| 1093 | 1094 | .. |simpleicons vim| image:: https://img.shields.io/badge/--019733?logo=vim 1095 | :target: https://www.vim.org 1096 | 1097 | |simpleicons openbsd| 1098 | 1099 | .. code:: rst 1100 | 1101 | |simpleicons openbsd| 1102 | 1103 | .. |simpleicons openbsd| image:: https://img.shields.io/badge/--F2CA30?logo=openbsd&logoColor=000000 1104 | :target: https://www.openbsd.org 1105 | 1106 | |simpleicons suckless| 1107 | 1108 | .. code:: rst 1109 | 1110 | |simpleicons suckless| 1111 | 1112 | .. |simpleicons suckless| image:: https://img.shields.io/badge/--1177AA?logo=suckless 1113 | :target: https://suckless.org 1114 | 1115 | |simpleicons dwm| 1116 | 1117 | .. code:: rst 1118 | 1119 | |simpleicons dwm| 1120 | 1121 | .. |simpleicons dwm| image:: https://img.shields.io/badge/--1177AA?logo=dwm 1122 | :target: https://dwm.suckless.org 1123 | 1124 | |simpleicons git| 1125 | 1126 | .. code:: rst 1127 | 1128 | |simpleicons git| 1129 | 1130 | .. |simpleicons git| image:: https://img.shields.io/badge/--F05032?logo=git&logoColor=ffffff 1131 | :target: http://git-scm.com 1132 | 1133 | |simpleicons xorg| 1134 | 1135 | .. code:: rst 1136 | 1137 | |simpleicons xorg| 1138 | 1139 | .. |simpleicons xorg| image:: https://img.shields.io/badge/--F28834?logo=x.org&logoColor=ffffff 1140 | :target: https://x.org 1141 | 1142 | |simpleicons visualstudio| 1143 | 1144 | .. code:: rst 1145 | 1146 | |simpleicons visualstudio| 1147 | 1148 | .. |simpleicons visualstudio| image:: https://img.shields.io/badge/--6C33AF?logo=visual%20studio 1149 | :target: https://visualstudio.microsoft.com 1150 | 1151 | |simpleicons golang| 1152 | 1153 | .. code:: rst 1154 | 1155 | |simpleicons golang| 1156 | 1157 | .. |simpleicons golang| image:: https://img.shields.io/badge/--00ADD8?logo=go&logoColor=ffffff 1158 | :target: https://golang.org 1159 | 1160 | -------------- 1161 | 1162 | Open-Source 1163 | ----------- 1164 | 1165 | Version 1, in SVG: |Open Source Love svg1| 1166 | 1167 | .. code:: rst 1168 | 1169 | |Open Source Love svg1| 1170 | 1171 | .. |Open Source Love svg1| image:: https://badges.frapsoft.com/os/v1/open-source.svg?v=103 1172 | :target: https://github.com/ellerbrock/open-source-badges/ 1173 | 1174 | Version 1, in PNG: |Open Source Love png1| 1175 | 1176 | .. code:: rst 1177 | 1178 | |Open Source Love png1| 1179 | 1180 | .. |Open Source Love png1| image:: https://badges.frapsoft.com/os/v1/open-source.png?v=103 1181 | :target: https://github.com/ellerbrock/open-source-badges/ 1182 | 1183 | Version 2, in SVG: |Open Source Love svg2| 1184 | 1185 | .. code:: rst 1186 | 1187 | |Open Source Love svg2| 1188 | 1189 | .. |Open Source Love svg2| image:: https://badges.frapsoft.com/os/v2/open-source.svg?v=103 1190 | :target: https://github.com/ellerbrock/open-source-badges/ 1191 | 1192 | Version 2, in PNG: |Open Source Love png2| 1193 | 1194 | .. code:: rst 1195 | 1196 | |Open Source Love png2| 1197 | 1198 | .. |Open Source Love png2| image:: https://badges.frapsoft.com/os/v2/open-source.png?v=103 1199 | :target: https://github.com/ellerbrock/open-source-badges/ 1200 | 1201 | Version 3, in SVG: |Open Source Love svg3| 1202 | 1203 | .. code:: rst 1204 | 1205 | |Open Source Love svg3| 1206 | 1207 | .. |Open Source Love svg3| image:: https://badges.frapsoft.com/os/v3/open-source.svg?v=103 1208 | :target: https://github.com/ellerbrock/open-source-badges/ 1209 | 1210 | Version 3, in PNG: |Open Source Love png3| 1211 | 1212 | .. code:: rst 1213 | 1214 | |Open Source Love png3| 1215 | 1216 | .. |Open Source Love png3| image:: https://badges.frapsoft.com/os/v3/open-source.png?v=103 1217 | :target: https://github.com/ellerbrock/open-source-badges/ 1218 | 1219 | Open Source? Yes! |Open Source? Yes!| 1220 | 1221 | .. code:: rst 1222 | 1223 | |Open Source? Yes!| 1224 | 1225 | .. |Open Source? Yes!| image:: https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github 1226 | :target: https://github.com/Naereen/badges/ 1227 | 1228 | 1229 | -------------- 1230 | 1231 | Meta badges ?! 1232 | -------------- 1233 | 1234 | This is a badge to show that you like to put badges on your README: 1235 | 1236 | |Awesome Badges| 1237 | 1238 | .. code:: rst 1239 | 1240 | |Awesome Badges| 1241 | 1242 | .. |Awesome Badges| image:: https://img.shields.io/badge/badges-awesome-green.svg 1243 | :target: https://github.com/Naereen/badges 1244 | 1245 | And this is a `meta badge `__ : *"some people like repo badges so this is a badge to count your repo badges"* : 1246 | 1247 | |BADGINATOR| 1248 | 1249 | .. code:: rst 1250 | 1251 | |BADGINATOR| 1252 | 1253 | .. |BADGINATOR| image:: https://badginator.herokuapp.com/Naereen/badges.svg 1254 | :target: https://github.com/defunctzombie/badginator 1255 | 1256 | ---- 1257 | 1258 | DOI and Zenodo 1259 | -------------- 1260 | 1261 | This is a badge to link to a [DOI](https://doi.org/): 1262 | 1263 | |DOI| 1264 | 1265 | .. code:: rst 1266 | 1267 | |DOI| 1268 | 1269 | .. |DOI| image:: https://zenodo.org/badge/DOI/10.1007/978-3-319-76207-4_15.svg 1270 | :target: https://doi.org/10.1007/978-3-319-76207-4_15 1271 | 1272 | -------------- 1273 | 1274 | DOI Citations 1275 | -------------- 1276 | 1277 | This badge is showing the number of citations of a paper / DOI. Updated daily. See [HowTo](https://juleskreuer.eu/projekte/citation-badge/) 1278 | 1279 | |DOI Citations| 1280 | 1281 | .. code:: rst 1282 | 1283 | |DOI Citations| 1284 | 1285 | .. |DOI Citations| image:: https://api.juleskreuer.eu/citation-badge.php?doi=10.1126/science.1058040 1286 | :target: https://juleskreuer.eu/projekte/citation-badge/ 1287 | 1288 | -------------- 1289 | 1290 | `Say thanks `__ 1291 | -------------------------------------------------------------- 1292 | A nice badge to give a link to `saythanks.io/to/kennethreitz `__ (for example). 1293 | 1294 | |say thanks| 1295 | 1296 | .. code:: rst 1297 | 1298 | |say thanks| 1299 | 1300 | .. |say thanks| image:: https://img.shields.io/badge/say-thanks-ff69b4.svg 1301 | :target: https://saythanks.io/to/kennethreitz 1302 | 1303 | -------------- 1304 | 1305 | Custom Logo 1306 | ----------- 1307 | 1308 | How to create step by step 1309 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ 1310 | 1311 | 1. Search a SVG image logo 1312 | 1313 | - `Simpleicons `__ 1314 | - `Flaticon `__ 1315 | - `Materialdesignicons `__ 1316 | 1317 | 2. Optimize the SVG image using a tool: 1318 | 1319 | - Example of tool: 1320 | 1321 | - `SVGO Project `__ (`Web 1322 | App `__) 1323 | 1324 | 3. Encode the Optimized SVG to Base64 using a tool: 1325 | 1326 | - Example of tool: 1327 | 1328 | - `B64.io `__ 1329 | - `Base64.Guru `__ 1330 | 1331 | 4. Place the B64 code after the code: 1332 | 1333 | .. code:: rst 1334 | 1335 | .. |Love| image:: https://img.shields.io/badge/--?logo=data:image/svg%2bxml;base64, 1336 | 1337 | 5. Use in your README.rst 1338 | 1339 | Love 1340 | ~~~~ 1341 | 1342 | |Love| 1343 | 1344 | .. code:: rst 1345 | 1346 | |Love| 1347 | 1348 | .. |Love| image:: https://img.shields.io/badge/Love-pink?style=flat-square&logo=data:image/svg%2bxml;base64,PHN2ZyByb2xlPSJpbWciIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+R2l0SHViIFNwb25zb3JzIGljb248L3RpdGxlPjxwYXRoIGQ9Ik0xNy42MjUgMS40OTljLTIuMzIgMC00LjM1NCAxLjIwMy01LjYyNSAzLjAzLTEuMjcxLTEuODI3LTMuMzA1LTMuMDMtNS42MjUtMy4wM0MzLjEyOSAxLjQ5OSAwIDQuMjUzIDAgOC4yNDljMCA0LjI3NSAzLjA2OCA3Ljg0NyA1LjgyOCAxMC4yMjdhMzMuMTQgMzMuMTQgMCAwIDAgNS42MTYgMy44NzZsLjAyOC4wMTcuMDA4LjAwMy0uMDAxLjAwM2MuMTYzLjA4NS4zNDIuMTI2LjUyMS4xMjUuMTc5LjAwMS4zNTgtLjA0MS41MjEtLjEyNWwtLjAwMS0uMDAzLjAwOC0uMDAzLjAyOC0uMDE3YTMzLjE0IDMzLjE0IDAgMCAwIDUuNjE2LTMuODc2QzIwLjkzMiAxNi4wOTYgMjQgMTIuNTI0IDI0IDguMjQ5YzAtMy45OTYtMy4xMjktNi43NS02LjM3NS02Ljc1em0tLjkxOSAxNS4yNzVhMzAuNzY2IDMwLjc2NiAwIDAgMS00LjcwMyAzLjMxNmwtLjAwNC0uMDAyLS4wMDQuMDAyYTMwLjk1NSAzMC45NTUgMCAwIDEtNC43MDMtMy4zMTZjLTIuNjc3LTIuMzA3LTUuMDQ3LTUuMjk4LTUuMDQ3LTguNTIzIDAtMi43NTQgMi4xMjEtNC41IDQuMTI1LTQuNSAyLjA2IDAgMy45MTQgMS40NzkgNC41NDQgMy42ODQuMTQzLjQ5NS41OTYuNzk3IDEuMDg2Ljc5Ni40OS4wMDEuOTQzLS4zMDIgMS4wODUtLjc5Ni42My0yLjIwNSAyLjQ4NC0zLjY4NCA0LjU0NC0zLjY4NCAyLjAwNCAwIDQuMTI1IDEuNzQ2IDQuMTI1IDQuNSAwIDMuMjI1LTIuMzcgNi4yMTYtNS4wNDggOC41MjN6Ii8+PC9zdmc+ 1349 | :target: https://simpleicons.org/icons/githubsponsors.svg 1350 | 1351 | Magic 1352 | ~~~~~ 1353 | 1354 | |Magic| 1355 | 1356 | .. code:: rst 1357 | 1358 | |Magic| 1359 | 1360 | .. |Magic| image:: https://img.shields.io/badge/Made%20with-Magic-orange?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGc+PHBhdGggZD0ibTM5NS44MiAxODIuNjE2LTE4OC43MiAxODguNzItMTIuOTEgMS43Mi05LjM1IDIwLjU0LTM0LjMxIDM0LjMxLTExLjAxLS43My0xMS4yNSAyMi45OS01Ni40OCA1Ni40OGMtMi45MyAyLjkzLTYuNzcgNC4zOS0xMC42MSA0LjM5cy03LjY4LTEuNDYtMTAuNjEtNC4zOWwtMjIuNjItMjIuNjJoLS4wMWwtMjIuNjItMjIuNjNjLTUuODYtNS44Ni01Ljg2LTE1LjM2IDAtMjEuMjJsNzcuNjMtNzcuNjMgMTYuNi03LjAzIDUuNjYtMTUuMjMgMzQuMzEtMzQuMzEgMTQuODQtNC45MiA3LjQyLTE3LjM0IDE2Ny41Ny0xNjcuNTcgMzMuMjQgMzMuMjR6IiBmaWxsPSIjZjY2Ii8+PHBhdGggZD0ibTM5NS44MiAxMTYuMTQ2djY2LjQ3bC0xODguNzIgMTg4LjcyLTEyLjkxIDEuNzItOS4zNSAyMC41NC0zNC4zMSAzNC4zMS0xMS4wMS0uNzMtMTEuMjUgMjIuOTktNTYuNDggNTYuNDhjLTIuOTMgMi45My02Ljc3IDQuMzktMTAuNjEgNC4zOXMtNy42OC0xLjQ2LTEwLjYxLTQuMzlsLTIyLjYyLTIyLjYyIDMzNC42NC0zMzQuNjR6IiBmaWxsPSIjZTYyZTZiIi8+PHBhdGggZD0ibTUwNi42MSAyMDkuMDA2LTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xNy00LjUyLTQuNTMtMTEuNDItNS42OC0xNy4xNy0yLjg4bC04OC4zOCA0My4wNS02OS4xMy02OS4xNGMtNC4zNS00LjM1LTEwLjkyLTUuNi0xNi41Ni0zLjE2LTUuNjUgMi40NS05LjIzIDguMDktOS4wNCAxNC4yNGwyLjg2IDkwLjQ1LTg1LjM3IDU3LjgzYy00LjkxIDMuMzItNy40IDkuMjItNi4zNiAxNS4wNCAxLjA0IDUuODMgNS40IDEwLjUxIDExLjE1IDExLjk0bDk2LjYyIDI0LjAxIDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZ6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTI5Ni4yNiAyMTUuNzA2IDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZsLTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xN3oiIGZpbGw9IiNmZDkwMjUiLz48cGF0aCBkPSJtNDY1IDQxNi45NjZjLTI1LjkyIDAtNDcgMjEuMDgtNDcgNDdzMjEuMDggNDcgNDcgNDcgNDctMjEuMDggNDctNDctMjEuMDgtNDctNDctNDd6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTEwNCAyOC45NjZoLTEzdi0xM2MwLTguMjg0LTYuNzE2LTE1LTE1LTE1cy0xNSA2LjcxNi0xNSAxNXYxM2gtMTNjLTguMjg0IDAtMTUgNi43MTYtMTUgMTVzNi43MTYgMTUgMTUgMTVoMTN2MTNjMCA4LjI4NCA2LjcxNiAxNSAxNSAxNXMxNS02LjcxNiAxNS0xNXYtMTNoMTNjOC4yODQgMCAxNS02LjcxNiAxNS0xNXMtNi43MTYtMTUtMTUtMTV6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTIwNy4xIDM3MS4zMzYtMjIuMjYgMjIuMjYtNDUuMzItODcuNjIgMjIuMjYtMjIuMjZ6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTE4NC44NCAzOTMuNTk2IDIyLjI2LTIyLjI2LTIyLjY2LTQzLjgxLTIyLjI2NSAyMi4yNjV6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTE1MC41MyA0MjcuOTA2LTIyLjI2IDIyLjI2LTQ1LjMyLTg3LjYyIDIyLjI2LTIyLjI2eiIgZmlsbD0iI2ZlZDg0MyIvPjxwYXRoIGQ9Im0xMjguMjcgNDUwLjE2NiAyMi4yNi0yMi4yNi0yMi42NTUtNDMuODE1LTIyLjI2IDIyLjI2eiIgZmlsbD0iI2ZhYmUyYyIvPjxjaXJjbGUgY3g9IjE1IiBjeT0iMTE5Ljk2OSIgZmlsbD0iIzVlZDhkMyIgcj0iMTUiLz48Y2lyY2xlIGN4PSIxMjgiIGN5PSIxOTkuOTY5IiBmaWxsPSIjZDU5OWVkIiByPSIxNSIvPjxjaXJjbGUgY3g9IjE5MiIgY3k9IjYzLjk2NCIgZmlsbD0iI2Y2NiIgcj0iMTUiLz48Y2lyY2xlIGN4PSIzMjgiIGN5PSI0MTUuOTY3IiBmaWxsPSIjMzFiZWJlIiByPSIxNSIvPjxjaXJjbGUgY3g9IjQ0MCIgY3k9IjMyNy45NjciIGZpbGw9IiNhZDc3ZTMiIHI9IjE0Ljk5OSIvPjwvZz48L3N2Zz4= 1361 | :target: https://www.flaticon.com/free-icon/magic-wand_3627668 1362 | 1363 | Safe 1364 | ~~~~ 1365 | 1366 | |Safe| 1367 | 1368 | .. code:: rst 1369 | 1370 | |Safe| 1371 | 1372 | .. |Safe| image:: https://img.shields.io/badge/Stay-Safe-red?logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNTEwIDUxMCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCA1MTAgNTEwIiB3aWR0aD0iNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnPjxnPjxwYXRoIGQ9Im0xNzQuNjEgMzAwYy0yMC41OCAwLTQwLjU2IDYuOTUtNTYuNjkgMTkuNzJsLTExMC4wOSA4NS43OTd2MTA0LjQ4M2g1My41MjlsNzYuNDcxLTY1aDEyNi44MnYtMTQ1eiIgZmlsbD0iI2ZmZGRjZSIvPjwvZz48cGF0aCBkPSJtNTAyLjE3IDI4NC43MmMwIDguOTUtMy42IDE3Ljg5LTEwLjc4IDI0LjQ2bC0xNDguNTYgMTM1LjgyaC03OC4xOHYtODVoNjguMThsMTE0LjM0LTEwMC4yMWMxMi44Mi0xMS4yMyAzMi4wNi0xMC45MiA0NC41LjczIDcgNi41NSAxMC41IDE1LjM4IDEwLjUgMjQuMnoiIGZpbGw9IiNmZmNjYmQiLz48cGF0aCBkPSJtMzMyLjgzIDM0OS42M3YxMC4zN2gtNjguMTh2LTYwaDE4LjU1YzI3LjQxIDAgNDkuNjMgMjIuMjIgNDkuNjMgNDkuNjN6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTM5OS44IDc3LjN2OC4wMWMwIDIwLjY1LTguMDQgNDAuMDctMjIuNjQgNTQuNjdsLTExMi41MSAxMTIuNTF2LTIyNi42NmwzLjE4LTMuMTljMTQuNi0xNC42IDM0LjAyLTIyLjY0IDU0LjY3LTIyLjY0IDQyLjYyIDAgNzcuMyAzNC42OCA3Ny4zIDc3LjN6IiBmaWxsPSIjZDAwMDUwIi8+PHBhdGggZD0ibTI2NC42NSAyNS44M3YyMjYuNjZsLTExMi41MS0xMTIuNTFjLTE0LjYtMTQuNi0yMi42NC0zNC4wMi0yMi42NC01NC42N3YtOC4wMWMwLTQyLjYyIDM0LjY4LTc3LjMgNzcuMy03Ny4zIDIwLjY1IDAgNDAuMDYgOC4wNCA1NC42NiAyMi42NHoiIGZpbGw9IiNmZjRhNGEiLz48cGF0aCBkPSJtMjEyLjgzIDM2MC4xMnYzMGg1MS44MnYtMzB6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTI2NC42NSAzNjAuMTJ2MzBoMzYuMTRsMzIuMDQtMzB6IiBmaWxsPSIjZmZiZGE5Ii8+PC9nPjwvc3ZnPg== 1373 | :target: https://www.flaticon.com/free-icon/heart_3555817 1374 | 1375 | Info 1376 | ~~~~ 1377 | 1378 | |Info| 1379 | 1380 | .. code:: rst 1381 | 1382 | |Info| 1383 | 1384 | .. |Info| image:: https://img.shields.io/badge/Project-Info-blue?style=flat-square&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggc3R5bGU9ImZpbGw6IzBBNEVBRjsiIGQ9Ik0yNTYsNTEyYy02OC4zOCwwLTEzMi42NjctMjYuNjI5LTE4MS4wMi03NC45OEMyNi42MjksMzg4LjY2NywwLDMyNC4zOCwwLDI1Ng0KCVMyNi42MjksMTIzLjMzMyw3NC45OCw3NC45OEMxMjMuMzMzLDI2LjYyOSwxODcuNjIsMCwyNTYsMHMxMzIuNjY3LDI2LjYyOSwxODEuMDIsNzQuOThDNDg1LjM3MSwxMjMuMzMzLDUxMiwxODcuNjIsNTEyLDI1Ng0KCXMtMjYuNjI5LDEzMi42NjctNzQuOTgsMTgxLjAyQzM4OC42NjcsNDg1LjM3MSwzMjQuMzgsNTEyLDI1Niw1MTJ6Ii8+DQo8cGF0aCBzdHlsZT0iZmlsbDojMDYzRThCOyIgZD0iTTQzNy4wMiw3NC45OEMzODguNjY3LDI2LjYyOSwzMjQuMzgsMCwyNTYsMHY1MTJjNjguMzgsMCwxMzIuNjY3LTI2LjYyOSwxODEuMDItNzQuOTgNCglDNDg1LjM3MSwzODguNjY3LDUxMiwzMjQuMzgsNTEyLDI1NlM0ODUuMzcxLDEyMy4zMzMsNDM3LjAyLDc0Ljk4eiIvPg0KPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0yNTYsMTg1Yy0zMC4zMjcsMC01NS0yNC42NzMtNTUtNTVzMjQuNjczLTU1LDU1LTU1czU1LDI0LjY3Myw1NSw1NVMyODYuMzI3LDE4NSwyNTYsMTg1eiBNMzAxLDM5NQ0KCVYyMTVIMTkxdjMwaDMwdjE1MGgtMzB2MzBoMTQwdi0zMEgzMDF6Ii8+DQo8Zz4NCgk8cGF0aCBzdHlsZT0iZmlsbDojQ0NFRkZGOyIgZD0iTTI1NiwxODVjMzAuMzI3LDAsNTUtMjQuNjczLDU1LTU1cy0yNC42NzMtNTUtNTUtNTVWMTg1eiIvPg0KCTxwb2x5Z29uIHN0eWxlPSJmaWxsOiNDQ0VGRkY7IiBwb2ludHM9IjMwMSwzOTUgMzAxLDIxNSAyNTYsMjE1IDI1Niw0MjUgMzMxLDQyNSAzMzEsMzk1IAkiLz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K 1385 | :target: https://www.flaticon.com/free-icon/info_785822 1386 | 1387 | Telegram 1388 | ~~~~~~~~ 1389 | 1390 | |Telegram| 1391 | 1392 | .. code:: rst 1393 | 1394 | |Telegram| 1395 | 1396 | .. |Telegram| image:: https://img.shields.io/badge/Join-Telegram-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOS40MTcgMTUuMTgxLS4zOTcgNS41ODRjLjU2OCAwIC44MTQtLjI0NCAxLjEwOS0uNTM3bDIuNjYzLTIuNTQ1IDUuNTE4IDQuMDQxYzEuMDEyLjU2NCAxLjcyNS4yNjcgMS45OTgtLjkzMWwzLjYyMi0xNi45NzIuMDAxLS4wMDFjLjMyMS0xLjQ5Ni0uNTQxLTIuMDgxLTEuNTI3LTEuNzE0bC0yMS4yOSA4LjE1MWMtMS40NTMuNTY0LTEuNDMxIDEuMzc0LS4yNDcgMS43NDFsNS40NDMgMS42OTMgMTIuNjQzLTcuOTExYy41OTUtLjM5NCAxLjEzNi0uMTc2LjY5MS4yMTh6IiBmaWxsPSIjMDM5YmU1Ii8+PC9zdmc+ 1397 | :target: https://www.flaticon.com/free-icon/telegram_2111644 1398 | 1399 | RuboCop 1400 | ~~~~~~~ 1401 | 1402 | |RuboCop| 1403 | 1404 | .. code:: rst 1405 | 1406 | |RuboCop| 1407 | 1408 | .. |RuboCop| image:: https://img.shields.io/badge/code%20style-Rubocop-red?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHRpdGxlPmZpbGVfdHlwZV9ydWJvY29wPC90aXRsZT48cGF0aCBkPSJNMjcuMDUsMTMuOVYxM2ExLjc5MywxLjc5MywwLDAsMC0xLjgtMS44SDYuNjVBMS43OTMsMS43OTMsMCwwLDAsNC44NSwxM3YuOWExLjUyNSwxLjUyNSwwLDAsMC0uNywxLjJ2Mi40YTEuMzg3LDEuMzg3LDAsMCwwLC43LDEuMnYuOWExLjc5MywxLjc5MywwLDAsMCwxLjgsMS44aDE4LjdhMS43OTMsMS43OTMsMCwwLDAsMS44LTEuOHYtLjlhMS41MjUsMS41MjUsMCwwLDAsLjctMS4yVjE1LjFBMS43NDIsMS43NDIsMCwwLDAsMjcuMDUsMTMuOVoiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMTUuOTUsMmE5LjkyNSw5LjkyNSwwLDAsMC05LjgsOC42aDE5LjZBOS45MjUsOS45MjUsMCwwLDAsMTUuOTUsMloiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cG9seWdvbiBwb2ludHM9IjEzLjA1IDI0IDE4Ljg1IDI0IDE5LjQ1IDI0LjcgMjAuMzUgMjQgMTkuNDUgMjIuOSAxMi40NSAyMi45IDExLjU1IDI0IDEyLjQ1IDI0LjcgMTMuMDUgMjQiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMjMuNTUsMTcuNkg4LjM1YTEuMywxLjMsMCwxLDEsMC0yLjZoMTUuM2ExLjMyNCwxLjMyNCwwLDAsMSwxLjMsMS4zQTEuNDkzLDEuNDkzLDAsMCwxLDIzLjU1LDE3LjZaIiBzdHlsZT0iZmlsbDojZWMxYzI0Ii8+PHBhdGggZD0iTTIzLjA1LDIydjMuOGExLjk2NywxLjk2NywwLDAsMS0xLjksMS45aC0xYS44NjQuODY0LDAsMCwxLS42LS4zbC0xLjItMS42YS42LjYsMCwwLDAtLjYtLjNoLTMuNmEuNzY0Ljc2NCwwLDAsMC0uNS4ybC0xLjMsMS42YS42LjYsMCwwLDEtLjYuM2gtMWExLjk2NywxLjk2NywwLDAsMS0xLjktMS45VjIySDYuNTV2My44YTQuMjI1LDQuMjI1LDAsMCwwLDQuMiw0LjJoMTAuNGE0LjIyNSw0LjIyNSwwLDAsMCw0LjItNC4yVjIyWiIgc3R5bGU9ImZpbGw6I2M1YzVjNSIvPjwvc3ZnPg== 1409 | :target: https://github.com/vscode-icons/vscode-icons/blob/master/icons/file_type_rubocop.svg 1410 | 1411 | -------------- 1412 | 1413 | Random 1414 | ------ 1415 | 1416 | Ages 20-30... 1417 | ~~~~~~~~~~~~~ 1418 | 1419 | |ForTheBadge 20-30| 1420 | 1421 | .. code:: rst 1422 | 1423 | |ForTheBadge 20-30| 1424 | 1425 | .. |ForTheBadge 20-30| image:: http://ForTheBadge.com/images/badges/ages-20-30.svg 1426 | :target: http://ForTheBadge.com 1427 | 1428 | Built by... 1429 | ~~~~~~~~~~~ 1430 | 1431 | |ForTheBadge built-by-developers| 1432 | 1433 | .. code:: rst 1434 | 1435 | |ForTheBadge built-by-developers| 1436 | 1437 | .. |ForTheBadge built-by-developers| image:: http://ForTheBadge.com/images/badges/built-by-developers.svg 1438 | :target: https://GitHub.com/Naereen/ 1439 | 1440 | Built with... 1441 | ~~~~~~~~~~~~~ 1442 | 1443 | |ForTheBadge built-with-love| 1444 | 1445 | .. code:: rst 1446 | 1447 | |ForTheBadge built-with-love| 1448 | 1449 | .. |ForTheBadge built-with-love| image:: http://ForTheBadge.com/images/badges/built-with-love.svg 1450 | :target: https://GitHub.com/Naereen/ 1451 | 1452 | |ForTheBadge built-with-science| 1453 | 1454 | .. code:: rst 1455 | 1456 | |ForTheBadge built-with-science| 1457 | 1458 | .. |ForTheBadge built-with-science| image:: http://ForTheBadge.com/images/badges/built-with-science.svg 1459 | :target: https://GitHub.com/Naereen/ 1460 | 1461 | |ForTheBadge built-with-swag| 1462 | 1463 | .. code:: rst 1464 | 1465 | |ForTheBadge built-with-swag| 1466 | 1467 | .. |ForTheBadge built-with-swag| image:: http://ForTheBadge.com/images/badges/built-with-swag.svg 1468 | :target: https://GitHub.com/Naereen/ 1469 | 1470 | Uses... 1471 | ~~~~~~~ 1472 | 1473 | |ForTheBadge uses-badges| 1474 | 1475 | .. code:: rst 1476 | 1477 | |ForTheBadge uses-badges| 1478 | 1479 | .. |ForTheBadge uses-badges| image:: http://ForTheBadge.com/images/badges/uses-badges.svg 1480 | :target: http://ForTheBadge.com 1481 | 1482 | |ForTheBadge uses-git| 1483 | 1484 | .. code:: rst 1485 | 1486 | |ForTheBadge uses-git| 1487 | 1488 | .. |ForTheBadge uses-git| image:: http://ForTheBadge.com/images/badges/uses-git.svg 1489 | :target: https://GitHub.com/ 1490 | 1491 | |ForTheBadge uses-html| 1492 | 1493 | .. code:: rst 1494 | 1495 | |ForTheBadge uses-html| 1496 | 1497 | .. |ForTheBadge uses-html| image:: http://ForTheBadge.com/images/badges/uses-html.svg 1498 | :target: http://ForTheBadge.com 1499 | 1500 | |ForTheBadge uses-css| 1501 | 1502 | .. code:: rst 1503 | 1504 | |ForTheBadge uses-css| 1505 | 1506 | .. |ForTheBadge uses-css| image:: http://ForTheBadge.com/images/badges/uses-css.svg 1507 | :target: http://ForTheBadge.com 1508 | 1509 | |ForTheBadge uses-js| 1510 | 1511 | .. code:: rst 1512 | 1513 | |ForTheBadge uses-js| 1514 | 1515 | .. |ForTheBadge uses-js| image:: http://ForTheBadge.com/images/badges/uses-js.svg 1516 | :target: http://ForTheBadge.com 1517 | 1518 | Fun 1519 | ~~~ 1520 | 1521 | |ForTheBadge makes-people-smile| 1522 | 1523 | .. code:: rst 1524 | 1525 | |ForTheBadge makes-people-smile| 1526 | 1527 | .. |ForTheBadge makes-people-smile| image:: http://ForTheBadge.com/images/badges/makes-people-smile.svg 1528 | :target: http://ForTheBadge.com 1529 | 1530 | |ForTheBadge powered-by-electricity| 1531 | 1532 | .. code:: rst 1533 | 1534 | |ForTheBadge powered-by-electricity| 1535 | 1536 | .. |ForTheBadge powered-by-electricity| image:: http://ForTheBadge.com/images/badges/powered-by-electricity.svg 1537 | :target: http://ForTheBadge.com 1538 | 1539 | |ForTheBadge winter-is-coming| 1540 | 1541 | .. code:: rst 1542 | 1543 | |ForTheBadge winter-is-coming| 1544 | 1545 | .. |ForTheBadge winter-is-coming| image:: http://ForTheBadge.com/images/badges/winter-is-coming.svg 1546 | :target: http://ForTheBadge.com 1547 | 1548 | -------------- 1549 | 1550 | References ? 1551 | ------------ 1552 | 1553 | - `ForTheBadge.com `__ 1554 | - `Shields.io `__ 1555 | - `LicenseButtons.net `__ 1556 | - `open-source-badges `__ 1557 | by [@ellerbrock](https://github.com/ellerbrock) 1558 | 1559 | TODO 1560 | ---- 1561 | 1562 | - [X] Finish this list 1563 | - [X] Update link for the *real resource* that should get linked to 1564 | - [X] Update all my README.md to add nice badges 1565 | 1566 | Issues 1567 | ------ 1568 | 1569 | - [ ] Smaller size (badge size) for some 1570 | `ForTheBadge.com `__ badges? (with-science, 1571 | winter-is-coming, made-with-python, all the creative-commons) 1572 | 1573 | Possible TODO? 1574 | -------------- 1575 | 1576 | - [ ] Download here a copy of every png/svg file, *only* for the static badges 1577 | - [ ] Host the badges in this repo, and not on an external web service ? 1578 | 1579 | License ? |GitHub license badges| 1580 | --------------------------------- 1581 | 1582 | `MIT Licensed `__ (file `LICENSE `__). 1583 | © `Lilian Besson `__, 2016-18. 1584 | 1585 | |Awesome Badges| |Maintenance| |Ask Me Anything !| |Analytics badges| |Open Source Love svg3| 1586 | 1587 | |ForTheBadge built-with-swag| 1588 | 1589 | |ForTheBadge uses-badges| |ForTheBadge uses-git| 1590 | 1591 | .. |Generic badge| image:: https://img.shields.io/badge/%3CSUBJECT%3E-%3CSTATUS%3E-%3CCOLOR%3E.svg 1592 | :target: https://shields.io/ 1593 | .. |Maintenance yes| image:: https://img.shields.io/badge/Maintained%3F-yes-green.svg 1594 | :target: https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity 1595 | .. |Maintenance no| image:: https://img.shields.io/badge/Maintained%3F-no-red.svg 1596 | :target: https://bitbucket.org/lbesson/ansi-colors 1597 | .. |Maintenance not intended| image:: http://unmaintained.tech/badge.svg 1598 | :target: http://unmaintained.tech/ 1599 | .. |Website shields.io| image:: https://img.shields.io/website-up-down-green-red/http/shields.io.svg 1600 | :target: http://shields.io/ 1601 | .. |Website monip.org| image:: https://img.shields.io/website-up-down-green-red/http/monip.org.svg 1602 | :target: http://monip.org/ 1603 | .. |Website perso.crans.org| image:: https://img.shields.io/website-up-down-green-red/http/perso.crans.org.svg 1604 | :target: http://perso.crans.org/ 1605 | .. |Website naereen.github.io| image:: https://img.shields.io/website-up-down-green-red/https/naereen.github.io.svg 1606 | :target: https://naereen.github.io/ 1607 | .. |Website lbesson.bitbucket.org| image:: https://img.shields.io/website-up-down-green-red/http/lbesson.bitbucket.org.svg 1608 | :target: http://lbesson.bitbucket.org/ 1609 | .. |Website cv.lbesson.qc.to| image:: https://img.shields.io/website-up-down-green-red/http/cv.lbesson.qc.to.svg 1610 | :target: http://cv.lbesson.qc.to/ 1611 | .. |Website fakesite.invalid| image:: https://img.shields.io/website-up-down-green-red/http/fakesite.invalid.svg 1612 | :target: http://fakesite.invalid/ 1613 | .. |Ask Me Anything !| image:: https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg 1614 | :target: https://GitHub.com/Naereen/ama 1615 | .. |Demandez moi n'importe quoi !| image:: https://img.shields.io/badge/Demandez%20moi-n'%20importe%20quoi-1abc9c.svg 1616 | :target: https://GitHub.com/Naereen/ama.fr 1617 | .. |forthebadge made-with-python| image:: http://ForTheBadge.com/images/badges/made-with-python.svg 1618 | :target: https://www.python.org/ 1619 | .. |made-with-python| image:: https://img.shields.io/badge/Made%20with-Python-1f425f.svg 1620 | :target: https://www.python.org/ 1621 | .. |made-with-sphinx-doc| image:: https://img.shields.io/badge/Made%20with-Sphinx-1f425f.svg 1622 | :target: https://www.sphinx-doc.org/ 1623 | .. |made-with-Go| image:: https://img.shields.io/badge/Made%20with-Go-1f425f.svg 1624 | :target: http://golang.org 1625 | .. |GitHub go.mod Go version of a Go module| image:: https://img.shields.io/github/go-mod/go-version/gomods/athens.svg 1626 | :target: https://github.com/gomods/athens 1627 | .. |GoDoc reference example| image:: https://img.shields.io/badge/godoc-reference-blue.svg 1628 | :target: https://godoc.org/nanomsg.org/go/mangos/v2 1629 | .. |GoReportCard example| image:: https://goreportcard.com/badge/github.com/nanomsg/mangos 1630 | :target: https://goreportcard.com/report/github.com/nanomsg/mangos 1631 | .. |made-with-Markdown| image:: https://img.shields.io/badge/Made%20with-Markdown-1f425f.svg 1632 | :target: http://commonmark.org 1633 | .. |made-with-StrapDown.js| image:: https://img.shields.io/badge/Made%20with-StrapDown.js-1f425f.svg 1634 | :target: https://GitHub.com/Naereen/StrapDown.js/ 1635 | .. |made-with-latex| image:: https://img.shields.io/badge/Made%20with-LaTeX-1f425f.svg 1636 | :target: https://www.latex-project.org/ 1637 | .. |made-with-mathjax| image:: https://img.shields.io/badge/Made%20with-MathJax-1f425f.svg 1638 | :target: https://www.mathjax.org/ 1639 | .. |PyPI download total| image:: https://img.shields.io/pypi/dt/ansicolortags.svg 1640 | :target: https://pypi.python.org/pypi/ansicolortags/ 1641 | .. |PyPI download month| image:: https://img.shields.io/pypi/dm/ansicolortags.svg 1642 | :target: https://pypi.python.org/pypi/ansicolortags/ 1643 | .. |PyPI download week| image:: https://img.shields.io/pypi/dw/ansicolortags.svg 1644 | :target: https://pypi.python.org/pypi/ansicolortags/ 1645 | .. |PyPI download day| image:: https://img.shields.io/pypi/dd/ansicolortags.svg 1646 | :target: https://pypi.python.org/pypi/ansicolortags/ 1647 | .. |PyPI version fury.io| image:: https://badge.fury.io/py/ansicolortags.svg 1648 | :target: https://pypi.python.org/pypi/ansicolortags/ 1649 | .. |PyPI version shields.io| image:: https://img.shields.io/pypi/v/ansicolortags.svg 1650 | :target: https://pypi.python.org/pypi/ansicolortags/ 1651 | .. |PyPI license| image:: https://img.shields.io/pypi/l/ansicolortags.svg 1652 | :target: https://pypi.python.org/pypi/ansicolortags/ 1653 | .. |PyPI format| image:: https://img.shields.io/pypi/format/ansicolortags.svg 1654 | :target: https://pypi.python.org/pypi/ansicolortags/ 1655 | .. |PyPI pyversions| image:: https://img.shields.io/pypi/pyversions/ansicolortags.svg 1656 | :target: https://pypi.python.org/pypi/ansicolortags/ 1657 | .. |PyPI implementation| image:: https://img.shields.io/pypi/implementation/ansicolortags.svg 1658 | :target: https://pypi.python.org/pypi/ansicolortags/ 1659 | .. |PyPI status| image:: https://img.shields.io/pypi/status/ansicolortags.svg 1660 | :target: https://pypi.python.org/pypi/ansicolortags/ 1661 | .. |made-with-JavaScript| image:: https://img.shields.io/badge/Made%20with-JavaScript-1f425f.svg 1662 | :target: https://www.javascript.com 1663 | .. |jsdelivr downloads official| image:: https://data.jsdelivr.com/v1/package/gh/jquery/jquery/badge?style=rounded 1664 | :target: https://www.jsdelivr.com/package/gh/jquery/jquery 1665 | .. |jsdelivr downloads shields| image:: https://img.shields.io/jsdelivr/gh/hm/jquery/jquery 1666 | :target: https://www.jsdelivr.com/package/gh/jquery/jquery 1667 | .. |Bash Shell| image:: https://badges.frapsoft.com/bash/v1/bash.png?v=103 1668 | :target: https://github.com/ellerbrock/open-source-badges/ 1669 | .. |made-with-bash| image:: https://img.shields.io/badge/Made%20with-Bash-1f425f.svg 1670 | :target: https://www.gnu.org/software/bash/ 1671 | .. |version-VSCode-extension| image:: https://vsmarketplacebadge.apphb.com/version/naereen.makefiles-support-for-vscode.svg 1672 | :target: https://marketplace.visualstudio.com/items?itemName=naereen.makefiles-support-for-vscode 1673 | .. |installs-VSCode-extension| image:: https://vsmarketplacebadge.apphb.com/installs/naereen.makefiles-support-for-vscode.svg 1674 | :target: https://marketplace.visualstudio.com/items?itemName=naereen.makefiles-support-for-vscode 1675 | .. |rating-VSCode-extension| image:: https://vsmarketplacebadge.apphb.com/rating/naereen.makefiles-support-for-vscode.svg 1676 | :target: https://marketplace.visualstudio.com/items?itemName=naereen.makefiles-support-for-vscode 1677 | .. |made-for-VSCode| image:: https://img.shields.io/badge/Made%20for-VSCode-1f425f.svg 1678 | :target: https://code.visualstudio.com/ 1679 | .. |open-in-VSCode| image:: https://open.vscode.dev/badges/open-in-vscode.svg 1680 | :target: https://open.vscode.dev/Naereen/badges 1681 | .. |Documentation Status| image:: https://readthedocs.org/projects/ansicolortags/badge/?version=latest 1682 | :target: http://ansicolortags.readthedocs.io/?badge=latest 1683 | .. |GitHub license| image:: https://img.shields.io/github/license/Naereen/StrapDown.js.svg 1684 | :target: https://github.com/Naereen/StrapDown.js/blob/master/LICENSE 1685 | .. |GitHub release| image:: https://img.shields.io/github/release/Naereen/StrapDown.js.svg 1686 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/ 1687 | .. |GitHub tag| image:: https://img.shields.io/github/tag/Naereen/StrapDown.js.svg 1688 | :target: https://GitHub.com/Naereen/StrapDown.js/tags/ 1689 | .. |GitHub commits| image:: https://img.shields.io/github/commits-since/Naereen/StrapDown.js/v1.0.0.svg 1690 | :target: https://GitHub.com/Naereen/StrapDown.js/commit/ 1691 | .. |Github all releases| image:: https://img.shields.io/github/downloads/Naereen/StrapDown.js/total.svg 1692 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/ 1693 | .. |Github releases (by release)| image:: https://img.shields.io/github/downloads/Naereen/StrapDown.js/v1.1/total.svg 1694 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/ 1695 | .. |Github releases (by Release)| image:: https://img.shields.io/github/downloads/Naereen/StrapDown.js/v1.0.0/total.svg 1696 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/ 1697 | .. |Github releases (by asset)| image:: https://img.shields.io/github/downloads/Naereen/StrapDown.js/latest/strapdown.min.js 1698 | :target: https://GitHub.com/Naereen/StrapDown.js/releases/ 1699 | .. |GitHub forks| image:: https://img.shields.io/github/forks/Naereen/StrapDown.js.svg?style=social&label=Fork&maxAge=2592000 1700 | :target: https://GitHub.com/Naereen/StrapDown.js/network/ 1701 | .. |GitHub stars| image:: https://img.shields.io/github/stars/Naereen/StrapDown.js.svg?style=social&label=Star&maxAge=2592000 1702 | :target: https://GitHub.com/Naereen/StrapDown.js/stargazers/ 1703 | .. |GitHub watchers| image:: https://img.shields.io/github/watchers/Naereen/StrapDown.js.svg?style=social&label=Watch&maxAge=2592000 1704 | :target: https://GitHub.com/Naereen/StrapDown.js/watchers/ 1705 | .. |GitHub followers| image:: https://img.shields.io/github/followers/Naereen.svg?style=social&label=Follow&maxAge=2592000 1706 | :target: https://GitHub.com/Naereen?tab=followers 1707 | .. |GitHub contributors| image:: https://img.shields.io/github/contributors/Naereen/StrapDown.js.svg 1708 | :target: https://GitHub.com/Naereen/StrapDown.js/graphs/contributors/ 1709 | .. |GitHub issues| image:: https://img.shields.io/github/issues/Naereen/StrapDown.js.svg 1710 | :target: https://GitHub.com/Naereen/StrapDown.js/issues/ 1711 | .. |GitHub issues-closed| image:: https://img.shields.io/github/issues-closed/Naereen/StrapDown.js.svg 1712 | :target: https://GitHub.com/Naereen/StrapDown.js/issues?q=is%3Aissue+is%3Aclosed 1713 | .. |Average time to resolve an issue| image:: http://isitmaintained.com/badge/resolution/Naereen/badges.svg 1714 | :target: http://isitmaintained.com/project/Naereen/badges 1715 | .. |Percentage of issues still open| image:: http://isitmaintained.com/badge/open/Naereen/badges.svg 1716 | :target: http://isitmaintained.com/project/Naereen/badges 1717 | .. |GitHub pull-requests| image:: https://img.shields.io/github/issues-pr/Naereen/StrapDown.js.svg 1718 | :target: https://GitHub.com/Naereen/StrapDown.js/pull/ 1719 | .. |GitHub pull-requests closed| image:: https://img.shields.io/github/issues-pr-closed/Naereen/StrapDown.js.svg 1720 | :target: https://GitHub.com/Naereen/StrapDown.js/pull/ 1721 | .. |GitHub make-a-pull-requests| image:: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square 1722 | :target: http://makeapullrequest.com 1723 | .. |Only 32 Kb| image:: https://badge-size.herokuapp.com/Naereen/StrapDown.js/master/strapdown.min.js 1724 | :target: https://github.com/Naereen/StrapDown.js/blob/master/strapdown.min.js 1725 | .. |GitHub version| image:: https://badge.fury.io/gh/Naereen%2FStrapDown.js.svg 1726 | :target: https://github.com/Naereen/StrapDown.js 1727 | .. |HitCount| image:: http://hits.dwyl.io/Naereen/badges.svg 1728 | :target: http://hits.dwyl.io/Naereen/badges 1729 | .. |Bitbucket issues| image:: https://img.shields.io/bitbucket/issues/lbesson/bin.svg 1730 | :target: https://Bitbucket.org/lbesson/bin/issues/ 1731 | .. |Package Control total downloads| image:: https://img.shields.io/packagecontrol/dt/SwitchDictionary.svg 1732 | :target: https://packagecontrol.io/packages/SwitchDictionary 1733 | .. |Package Control month downloads| image:: https://img.shields.io/packagecontrol/dm/SwitchDictionary.svg 1734 | :target: https://packagecontrol.io/packages/SwitchDictionary 1735 | .. |Package Control week downloads| image:: https://img.shields.io/packagecontrol/dw/SwitchDictionary.svg 1736 | :target: https://packagecontrol.io/packages/SwitchDictionary 1737 | .. |Package Control day downloads| image:: https://img.shields.io/packagecontrol/dd/SwitchDictionary.svg 1738 | :target: https://packagecontrol.io/packages/SwitchDictionary 1739 | .. |Analytics pixel| image:: https://ga-beacon.appspot.com/UA-38514290-17/github.com/Naereen/badges/README.md?pixel 1740 | :target: https://GitHub.com/Naereen/badges/ 1741 | .. |Analytics img| image:: https://ga-beacon.appspot.com/UA-38514290-17/github.com/Naereen/badges/README.md 1742 | :target: https://GitHub.com/Naereen/badges/ 1743 | .. |MIT license| image:: https://img.shields.io/badge/License-MIT-blue.svg 1744 | :target: https://lbesson.mit-license.org/ 1745 | .. |GPLv3 license| image:: https://img.shields.io/badge/License-GPLv3-blue.svg 1746 | :target: http://perso.crans.org/besson/LICENSE.html 1747 | .. |GPL license| image:: https://img.shields.io/badge/License-GPL-blue.svg 1748 | :target: http://perso.crans.org/besson/LICENSE.html 1749 | .. |Unlicense| image:: https://img.shields.io/badge/License-Unlicense-blue.svg 1750 | :target: https://unlicense.org/ 1751 | .. |CC-0 license| image:: https://img.shields.io/badge/License-CC--0-blue.svg 1752 | :target: https://creativecommons.org/licenses/by-nd/4.0 1753 | .. |forthebadge cc-0| image:: http://ForTheBadge.com/images/badges/cc-0.svg 1754 | :target: http://ForTheBadge.com 1755 | .. |licensebuttons by-nd| image:: https://licensebuttons.net/l/by-nd/3.0/88x31.png 1756 | :target: https://creativecommons.org/licenses/by-nd/4.0 1757 | .. |forthebadge cc-by-nd| image:: http://ForTheBadge.com/images/badges/cc-by-nd.svg 1758 | :target: https://creativecommons.org/licenses/by-nd/4.0 1759 | .. |licensebuttons by| image:: https://licensebuttons.net/l/by/3.0/88x31.png 1760 | :target: https://creativecommons.org/licenses/by/4.0 1761 | .. |forthebadge cc-by| image:: http://ForTheBadge.com/images/badges/cc-by.svg 1762 | :target: https://creativecommons.org/licenses/by/4.0 1763 | .. |licensebuttons by-nc-sa| image:: https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png 1764 | :target: https://creativecommons.org/licenses/by-nc-sa/4.0 1765 | .. |forthebadge cc-nc-sa| image:: http://ForTheBadge.com/images/badges/cc-nc-sa.svg 1766 | :target: https://creativecommons.org/licenses/by-nc-sa/4.0 1767 | .. |licensebuttons by-nc| image:: https://licensebuttons.net/l/by-nc/3.0/88x31.png 1768 | :target: https://creativecommons.org/licenses/by-nc/4.0 1769 | .. |forthebadge cc-nc| image:: http://ForTheBadge.com/images/badges/cc-nc.svg 1770 | :target: https://creativecommons.org/licenses/by-nc/4.0 1771 | .. |licensebuttons by-sa| image:: https://licensebuttons.net/l/by-sa/3.0/88x31.png 1772 | :target: https://creativecommons.org/licenses/by-sa/4.0 1773 | .. |forthebadge cc-sa| image:: http://ForTheBadge.com/images/badges/cc-sa.svg 1774 | :target: https://creativecommons.org/licenses/by-sa/4.0 1775 | .. |licensebuttons by-nc-sa-white| image:: https://licensebuttons.net/i/l/by-nc-sa/ffffff/00/00/00/88x31.png 1776 | :target: https://creativecommons.org/licenses/by-nc-sa/2.0 1777 | .. |licensebuttons by-nc-sa-black| image:: https://licensebuttons.net/i/l/by-nc-sa/000000/ff/ff/ff/88x31.png 1778 | :target: https://creativecommons.org/licenses/by-nc-sa/2.0 1779 | .. |licensebuttons by-nc-sa-magenta| image:: https://licensebuttons.net/i/l/by-nc-sa/eeeeee/ff/00/ff/88x31.png 1780 | :target: https://creativecommons.org/licenses/by-nc-sa/2.0 1781 | .. |simpleicons vim| image:: https://img.shields.io/badge/--019733?logo=vim 1782 | :target: https://www.vim.org 1783 | .. |simpleicons openbsd| image:: https://img.shields.io/badge/--F2CA30?logo=openbsd&logoColor=000000 1784 | :target: https://www.openbsd.org 1785 | .. |simpleicons suckless| image:: https://img.shields.io/badge/--1177AA?logo=suckless 1786 | :target: https://suckless.org 1787 | .. |simpleicons dwm| image:: https://img.shields.io/badge/--1177AA?logo=dwm 1788 | :target: https://dwm.suckless.org 1789 | .. |simpleicons git| image:: https://img.shields.io/badge/--F05032?logo=git&logoColor=ffffff 1790 | :target: http://git-scm.com 1791 | .. |simpleicons xorg| image:: https://img.shields.io/badge/--F28834?logo=x.org&logoColor=ffffff 1792 | :target: https://x.org 1793 | .. |simpleicons visualstudio| image:: https://img.shields.io/badge/--6C33AF?logo=visual%20studio 1794 | :target: https://visualstudio.microsoft.com 1795 | .. |simpleicons golang| image:: https://img.shields.io/badge/--00ADD8?logo=go&logoColor=ffffff 1796 | :target: https://golang.org 1797 | .. |Open Source Love svg1| image:: https://badges.frapsoft.com/os/v1/open-source.svg?v=103 1798 | :target: https://github.com/ellerbrock/open-source-badges/ 1799 | .. |Open Source Love png1| image:: https://badges.frapsoft.com/os/v1/open-source.png?v=103 1800 | :target: https://github.com/ellerbrock/open-source-badges/ 1801 | .. |Open Source Love svg2| image:: https://badges.frapsoft.com/os/v2/open-source.svg?v=103 1802 | :target: https://github.com/ellerbrock/open-source-badges/ 1803 | .. |Open Source Love png2| image:: https://badges.frapsoft.com/os/v2/open-source.png?v=103 1804 | :target: https://github.com/ellerbrock/open-source-badges/ 1805 | .. |Open Source Love svg3| image:: https://badges.frapsoft.com/os/v3/open-source.svg?v=103 1806 | :target: https://github.com/ellerbrock/open-source-badges/ 1807 | .. |Open Source Love png3| image:: https://badges.frapsoft.com/os/v3/open-source.png?v=103 1808 | :target: https://github.com/ellerbrock/open-source-badges/ 1809 | .. |Open Source? Yes!| image:: https://badgen.net/badge/Open%20Source%20%3F/Yes%21/blue?icon=github 1810 | :target: https://github.com/Naereen/badges/ 1811 | .. |Awesome Badges| image:: https://img.shields.io/badge/badges-awesome-green.svg 1812 | :target: https://github.com/Naereen/badges 1813 | .. |BADGINATOR| image:: https://badginator.herokuapp.com/Naereen/badges.svg 1814 | :target: https://github.com/defunctzombie/badginator 1815 | .. |DOI| image:: https://zenodo.org/badge/DOI/10.1007/978-3-319-76207-4_15.svg 1816 | :target: https://doi.org/10.1007/978-3-319-76207-4_15 1817 | .. |say thanks| image:: https://img.shields.io/badge/say-thanks-ff69b4.svg 1818 | :target: https://saythanks.io/to/kennethreitz 1819 | .. |Love| image:: https://img.shields.io/badge/Love-pink?style=flat-square&logo=data:image/svg%2bxml;base64,PHN2ZyByb2xlPSJpbWciIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48dGl0bGU+R2l0SHViIFNwb25zb3JzIGljb248L3RpdGxlPjxwYXRoIGQ9Ik0xNy42MjUgMS40OTljLTIuMzIgMC00LjM1NCAxLjIwMy01LjYyNSAzLjAzLTEuMjcxLTEuODI3LTMuMzA1LTMuMDMtNS42MjUtMy4wM0MzLjEyOSAxLjQ5OSAwIDQuMjUzIDAgOC4yNDljMCA0LjI3NSAzLjA2OCA3Ljg0NyA1LjgyOCAxMC4yMjdhMzMuMTQgMzMuMTQgMCAwIDAgNS42MTYgMy44NzZsLjAyOC4wMTcuMDA4LjAwMy0uMDAxLjAwM2MuMTYzLjA4NS4zNDIuMTI2LjUyMS4xMjUuMTc5LjAwMS4zNTgtLjA0MS41MjEtLjEyNWwtLjAwMS0uMDAzLjAwOC0uMDAzLjAyOC0uMDE3YTMzLjE0IDMzLjE0IDAgMCAwIDUuNjE2LTMuODc2QzIwLjkzMiAxNi4wOTYgMjQgMTIuNTI0IDI0IDguMjQ5YzAtMy45OTYtMy4xMjktNi43NS02LjM3NS02Ljc1em0tLjkxOSAxNS4yNzVhMzAuNzY2IDMwLjc2NiAwIDAgMS00LjcwMyAzLjMxNmwtLjAwNC0uMDAyLS4wMDQuMDAyYTMwLjk1NSAzMC45NTUgMCAwIDEtNC43MDMtMy4zMTZjLTIuNjc3LTIuMzA3LTUuMDQ3LTUuMjk4LTUuMDQ3LTguNTIzIDAtMi43NTQgMi4xMjEtNC41IDQuMTI1LTQuNSAyLjA2IDAgMy45MTQgMS40NzkgNC41NDQgMy42ODQuMTQzLjQ5NS41OTYuNzk3IDEuMDg2Ljc5Ni40OS4wMDEuOTQzLS4zMDIgMS4wODUtLjc5Ni42My0yLjIwNSAyLjQ4NC0zLjY4NCA0LjU0NC0zLjY4NCAyLjAwNCAwIDQuMTI1IDEuNzQ2IDQuMTI1IDQuNSAwIDMuMjI1LTIuMzcgNi4yMTYtNS4wNDggOC41MjN6Ii8+PC9zdmc+ 1820 | :target: https://simpleicons.org/icons/githubsponsors.svg 1821 | .. |Magic| image:: https://img.shields.io/badge/Made%20with-Magic-orange?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGc+PHBhdGggZD0ibTM5NS44MiAxODIuNjE2LTE4OC43MiAxODguNzItMTIuOTEgMS43Mi05LjM1IDIwLjU0LTM0LjMxIDM0LjMxLTExLjAxLS43My0xMS4yNSAyMi45OS01Ni40OCA1Ni40OGMtMi45MyAyLjkzLTYuNzcgNC4zOS0xMC42MSA0LjM5cy03LjY4LTEuNDYtMTAuNjEtNC4zOWwtMjIuNjItMjIuNjJoLS4wMWwtMjIuNjItMjIuNjNjLTUuODYtNS44Ni01Ljg2LTE1LjM2IDAtMjEuMjJsNzcuNjMtNzcuNjMgMTYuNi03LjAzIDUuNjYtMTUuMjMgMzQuMzEtMzQuMzEgMTQuODQtNC45MiA3LjQyLTE3LjM0IDE2Ny41Ny0xNjcuNTcgMzMuMjQgMzMuMjR6IiBmaWxsPSIjZjY2Ii8+PHBhdGggZD0ibTM5NS44MiAxMTYuMTQ2djY2LjQ3bC0xODguNzIgMTg4LjcyLTEyLjkxIDEuNzItOS4zNSAyMC41NC0zNC4zMSAzNC4zMS0xMS4wMS0uNzMtMTEuMjUgMjIuOTktNTYuNDggNTYuNDhjLTIuOTMgMi45My02Ljc3IDQuMzktMTAuNjEgNC4zOXMtNy42OC0xLjQ2LTEwLjYxLTQuMzlsLTIyLjYyLTIyLjYyIDMzNC42NC0zMzQuNjR6IiBmaWxsPSIjZTYyZTZiIi8+PHBhdGggZD0ibTUwNi42MSAyMDkuMDA2LTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xNy00LjUyLTQuNTMtMTEuNDItNS42OC0xNy4xNy0yLjg4bC04OC4zOCA0My4wNS02OS4xMy02OS4xNGMtNC4zNS00LjM1LTEwLjkyLTUuNi0xNi41Ni0zLjE2LTUuNjUgMi40NS05LjIzIDguMDktOS4wNCAxNC4yNGwyLjg2IDkwLjQ1LTg1LjM3IDU3LjgzYy00LjkxIDMuMzItNy40IDkuMjItNi4zNiAxNS4wNCAxLjA0IDUuODMgNS40IDEwLjUxIDExLjE1IDExLjk0bDk2LjYyIDI0LjAxIDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZ6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTI5Ni4yNiAyMTUuNzA2IDI0LjAxIDk2LjYyYzEuNDMgNS43NSA2LjExIDEwLjExIDExLjk0IDExLjE1Ljg3LjE2IDEuNzUuMjMgMi42Mi4yMyA0LjkyIDAgOS42LTIuNDIgMTIuNDItNi41OWw1Ny44My04NS4zNyA5MC40NSAyLjg2YzYuMTQuMTkgMTEuNzktMy4zOSAxNC4yNC05LjA0IDIuNDQtNS42NCAxLjE5LTEyLjIxLTMuMTYtMTYuNTZsLTY5LjE0LTY5LjEzIDQzLjA1LTg4LjM4YzIuOC01Ljc1IDEuNjUtMTIuNjUtMi44OC0xNy4xN3oiIGZpbGw9IiNmZDkwMjUiLz48cGF0aCBkPSJtNDY1IDQxNi45NjZjLTI1LjkyIDAtNDcgMjEuMDgtNDcgNDdzMjEuMDggNDcgNDcgNDcgNDctMjEuMDggNDctNDctMjEuMDgtNDctNDctNDd6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTEwNCAyOC45NjZoLTEzdi0xM2MwLTguMjg0LTYuNzE2LTE1LTE1LTE1cy0xNSA2LjcxNi0xNSAxNXYxM2gtMTNjLTguMjg0IDAtMTUgNi43MTYtMTUgMTVzNi43MTYgMTUgMTUgMTVoMTN2MTNjMCA4LjI4NCA2LjcxNiAxNSAxNSAxNXMxNS02LjcxNiAxNS0xNXYtMTNoMTNjOC4yODQgMCAxNS02LjcxNiAxNS0xNXMtNi43MTYtMTUtMTUtMTV6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTIwNy4xIDM3MS4zMzYtMjIuMjYgMjIuMjYtNDUuMzItODcuNjIgMjIuMjYtMjIuMjZ6IiBmaWxsPSIjZmVkODQzIi8+PHBhdGggZD0ibTE4NC44NCAzOTMuNTk2IDIyLjI2LTIyLjI2LTIyLjY2LTQzLjgxLTIyLjI2NSAyMi4yNjV6IiBmaWxsPSIjZmFiZTJjIi8+PHBhdGggZD0ibTE1MC41MyA0MjcuOTA2LTIyLjI2IDIyLjI2LTQ1LjMyLTg3LjYyIDIyLjI2LTIyLjI2eiIgZmlsbD0iI2ZlZDg0MyIvPjxwYXRoIGQ9Im0xMjguMjcgNDUwLjE2NiAyMi4yNi0yMi4yNi0yMi42NTUtNDMuODE1LTIyLjI2IDIyLjI2eiIgZmlsbD0iI2ZhYmUyYyIvPjxjaXJjbGUgY3g9IjE1IiBjeT0iMTE5Ljk2OSIgZmlsbD0iIzVlZDhkMyIgcj0iMTUiLz48Y2lyY2xlIGN4PSIxMjgiIGN5PSIxOTkuOTY5IiBmaWxsPSIjZDU5OWVkIiByPSIxNSIvPjxjaXJjbGUgY3g9IjE5MiIgY3k9IjYzLjk2NCIgZmlsbD0iI2Y2NiIgcj0iMTUiLz48Y2lyY2xlIGN4PSIzMjgiIGN5PSI0MTUuOTY3IiBmaWxsPSIjMzFiZWJlIiByPSIxNSIvPjxjaXJjbGUgY3g9IjQ0MCIgY3k9IjMyNy45NjciIGZpbGw9IiNhZDc3ZTMiIHI9IjE0Ljk5OSIvPjwvZz48L3N2Zz4= 1822 | :target: https://www.flaticon.com/free-icon/magic-wand_3627668 1823 | .. |Safe| image:: https://img.shields.io/badge/Stay-Safe-red?logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNTEwIDUxMCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCA1MTAgNTEwIiB3aWR0aD0iNTEyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnPjxnPjxwYXRoIGQ9Im0xNzQuNjEgMzAwYy0yMC41OCAwLTQwLjU2IDYuOTUtNTYuNjkgMTkuNzJsLTExMC4wOSA4NS43OTd2MTA0LjQ4M2g1My41MjlsNzYuNDcxLTY1aDEyNi44MnYtMTQ1eiIgZmlsbD0iI2ZmZGRjZSIvPjwvZz48cGF0aCBkPSJtNTAyLjE3IDI4NC43MmMwIDguOTUtMy42IDE3Ljg5LTEwLjc4IDI0LjQ2bC0xNDguNTYgMTM1LjgyaC03OC4xOHYtODVoNjguMThsMTE0LjM0LTEwMC4yMWMxMi44Mi0xMS4yMyAzMi4wNi0xMC45MiA0NC41LjczIDcgNi41NSAxMC41IDE1LjM4IDEwLjUgMjQuMnoiIGZpbGw9IiNmZmNjYmQiLz48cGF0aCBkPSJtMzMyLjgzIDM0OS42M3YxMC4zN2gtNjguMTh2LTYwaDE4LjU1YzI3LjQxIDAgNDkuNjMgMjIuMjIgNDkuNjMgNDkuNjN6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTM5OS44IDc3LjN2OC4wMWMwIDIwLjY1LTguMDQgNDAuMDctMjIuNjQgNTQuNjdsLTExMi41MSAxMTIuNTF2LTIyNi42NmwzLjE4LTMuMTljMTQuNi0xNC42IDM0LjAyLTIyLjY0IDU0LjY3LTIyLjY0IDQyLjYyIDAgNzcuMyAzNC42OCA3Ny4zIDc3LjN6IiBmaWxsPSIjZDAwMDUwIi8+PHBhdGggZD0ibTI2NC42NSAyNS44M3YyMjYuNjZsLTExMi41MS0xMTIuNTFjLTE0LjYtMTQuNi0yMi42NC0zNC4wMi0yMi42NC01NC42N3YtOC4wMWMwLTQyLjYyIDM0LjY4LTc3LjMgNzcuMy03Ny4zIDIwLjY1IDAgNDAuMDYgOC4wNCA1NC42NiAyMi42NHoiIGZpbGw9IiNmZjRhNGEiLz48cGF0aCBkPSJtMjEyLjgzIDM2MC4xMnYzMGg1MS44MnYtMzB6IiBmaWxsPSIjZmZjY2JkIi8+PHBhdGggZD0ibTI2NC42NSAzNjAuMTJ2MzBoMzYuMTRsMzIuMDQtMzB6IiBmaWxsPSIjZmZiZGE5Ii8+PC9nPjwvc3ZnPg== 1824 | :target: https://www.flaticon.com/free-icon/heart_3555817 1825 | .. |Info| image:: https://img.shields.io/badge/Project-Info-blue?style=flat-square&logo=data:image/svg%2bxml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggc3R5bGU9ImZpbGw6IzBBNEVBRjsiIGQ9Ik0yNTYsNTEyYy02OC4zOCwwLTEzMi42NjctMjYuNjI5LTE4MS4wMi03NC45OEMyNi42MjksMzg4LjY2NywwLDMyNC4zOCwwLDI1Ng0KCVMyNi42MjksMTIzLjMzMyw3NC45OCw3NC45OEMxMjMuMzMzLDI2LjYyOSwxODcuNjIsMCwyNTYsMHMxMzIuNjY3LDI2LjYyOSwxODEuMDIsNzQuOThDNDg1LjM3MSwxMjMuMzMzLDUxMiwxODcuNjIsNTEyLDI1Ng0KCXMtMjYuNjI5LDEzMi42NjctNzQuOTgsMTgxLjAyQzM4OC42NjcsNDg1LjM3MSwzMjQuMzgsNTEyLDI1Niw1MTJ6Ii8+DQo8cGF0aCBzdHlsZT0iZmlsbDojMDYzRThCOyIgZD0iTTQzNy4wMiw3NC45OEMzODguNjY3LDI2LjYyOSwzMjQuMzgsMCwyNTYsMHY1MTJjNjguMzgsMCwxMzIuNjY3LTI2LjYyOSwxODEuMDItNzQuOTgNCglDNDg1LjM3MSwzODguNjY3LDUxMiwzMjQuMzgsNTEyLDI1NlM0ODUuMzcxLDEyMy4zMzMsNDM3LjAyLDc0Ljk4eiIvPg0KPHBhdGggc3R5bGU9ImZpbGw6I0ZGRkZGRjsiIGQ9Ik0yNTYsMTg1Yy0zMC4zMjcsMC01NS0yNC42NzMtNTUtNTVzMjQuNjczLTU1LDU1LTU1czU1LDI0LjY3Myw1NSw1NVMyODYuMzI3LDE4NSwyNTYsMTg1eiBNMzAxLDM5NQ0KCVYyMTVIMTkxdjMwaDMwdjE1MGgtMzB2MzBoMTQwdi0zMEgzMDF6Ii8+DQo8Zz4NCgk8cGF0aCBzdHlsZT0iZmlsbDojQ0NFRkZGOyIgZD0iTTI1NiwxODVjMzAuMzI3LDAsNTUtMjQuNjczLDU1LTU1cy0yNC42NzMtNTUtNTUtNTVWMTg1eiIvPg0KCTxwb2x5Z29uIHN0eWxlPSJmaWxsOiNDQ0VGRkY7IiBwb2ludHM9IjMwMSwzOTUgMzAxLDIxNSAyNTYsMjE1IDI1Niw0MjUgMzMxLDQyNSAzMzEsMzk1IAkiLz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K 1826 | :target: https://www.flaticon.com/free-icon/info_785822 1827 | .. |Telegram| image:: https://img.shields.io/badge/Join-Telegram-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgaGVpZ2h0PSI1MTIiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtOS40MTcgMTUuMTgxLS4zOTcgNS41ODRjLjU2OCAwIC44MTQtLjI0NCAxLjEwOS0uNTM3bDIuNjYzLTIuNTQ1IDUuNTE4IDQuMDQxYzEuMDEyLjU2NCAxLjcyNS4yNjcgMS45OTgtLjkzMWwzLjYyMi0xNi45NzIuMDAxLS4wMDFjLjMyMS0xLjQ5Ni0uNTQxLTIuMDgxLTEuNTI3LTEuNzE0bC0yMS4yOSA4LjE1MWMtMS40NTMuNTY0LTEuNDMxIDEuMzc0LS4yNDcgMS43NDFsNS40NDMgMS42OTMgMTIuNjQzLTcuOTExYy41OTUtLjM5NCAxLjEzNi0uMTc2LjY5MS4yMTh6IiBmaWxsPSIjMDM5YmU1Ii8+PC9zdmc+ 1828 | :target: https://www.flaticon.com/free-icon/telegram_2111644 1829 | .. |RuboCop| image:: https://img.shields.io/badge/code%20style-Rubocop-red?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHRpdGxlPmZpbGVfdHlwZV9ydWJvY29wPC90aXRsZT48cGF0aCBkPSJNMjcuMDUsMTMuOVYxM2ExLjc5MywxLjc5MywwLDAsMC0xLjgtMS44SDYuNjVBMS43OTMsMS43OTMsMCwwLDAsNC44NSwxM3YuOWExLjUyNSwxLjUyNSwwLDAsMC0uNywxLjJ2Mi40YTEuMzg3LDEuMzg3LDAsMCwwLC43LDEuMnYuOWExLjc5MywxLjc5MywwLDAsMCwxLjgsMS44aDE4LjdhMS43OTMsMS43OTMsMCwwLDAsMS44LTEuOHYtLjlhMS41MjUsMS41MjUsMCwwLDAsLjctMS4yVjE1LjFBMS43NDIsMS43NDIsMCwwLDAsMjcuMDUsMTMuOVoiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMTUuOTUsMmE5LjkyNSw5LjkyNSwwLDAsMC05LjgsOC42aDE5LjZBOS45MjUsOS45MjUsMCwwLDAsMTUuOTUsMloiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cG9seWdvbiBwb2ludHM9IjEzLjA1IDI0IDE4Ljg1IDI0IDE5LjQ1IDI0LjcgMjAuMzUgMjQgMTkuNDUgMjIuOSAxMi40NSAyMi45IDExLjU1IDI0IDEyLjQ1IDI0LjcgMTMuMDUgMjQiIHN0eWxlPSJmaWxsOiNjNWM1YzUiLz48cGF0aCBkPSJNMjMuNTUsMTcuNkg4LjM1YTEuMywxLjMsMCwxLDEsMC0yLjZoMTUuM2ExLjMyNCwxLjMyNCwwLDAsMSwxLjMsMS4zQTEuNDkzLDEuNDkzLDAsMCwxLDIzLjU1LDE3LjZaIiBzdHlsZT0iZmlsbDojZWMxYzI0Ii8+PHBhdGggZD0iTTIzLjA1LDIydjMuOGExLjk2NywxLjk2NywwLDAsMS0xLjksMS45aC0xYS44NjQuODY0LDAsMCwxLS42LS4zbC0xLjItMS42YS42LjYsMCwwLDAtLjYtLjNoLTMuNmEuNzY0Ljc2NCwwLDAsMC0uNS4ybC0xLjMsMS42YS42LjYsMCwwLDEtLjYuM2gtMWExLjk2NywxLjk2NywwLDAsMS0xLjktMS45VjIySDYuNTV2My44YTQuMjI1LDQuMjI1LDAsMCwwLDQuMiw0LjJoMTAuNGE0LjIyNSw0LjIyNSwwLDAsMCw0LjItNC4yVjIyWiIgc3R5bGU9ImZpbGw6I2M1YzVjNSIvPjwvc3ZnPg== 1830 | :target: https://github.com/vscode-icons/vscode-icons/blob/master/icons/file_type_rubocop.svg 1831 | .. |ForTheBadge 20-30| image:: http://ForTheBadge.com/images/badges/ages-20-30.svg 1832 | :target: http://ForTheBadge.com 1833 | .. |ForTheBadge built-by-developers| image:: http://ForTheBadge.com/images/badges/built-by-developers.svg 1834 | :target: https://GitHub.com/Naereen/ 1835 | .. |ForTheBadge built-with-love| image:: http://ForTheBadge.com/images/badges/built-with-love.svg 1836 | :target: https://GitHub.com/Naereen/ 1837 | .. |ForTheBadge built-with-science| image:: http://ForTheBadge.com/images/badges/built-with-science.svg 1838 | :target: https://GitHub.com/Naereen/ 1839 | .. |ForTheBadge built-with-swag| image:: http://ForTheBadge.com/images/badges/built-with-swag.svg 1840 | :target: https://GitHub.com/Naereen/ 1841 | .. |ForTheBadge uses-badges| image:: http://ForTheBadge.com/images/badges/uses-badges.svg 1842 | :target: http://ForTheBadge.com 1843 | .. |ForTheBadge uses-git| image:: http://ForTheBadge.com/images/badges/uses-git.svg 1844 | :target: https://GitHub.com/ 1845 | .. |ForTheBadge uses-html| image:: http://ForTheBadge.com/images/badges/uses-html.svg 1846 | :target: http://ForTheBadge.com 1847 | .. |ForTheBadge uses-css| image:: http://ForTheBadge.com/images/badges/uses-css.svg 1848 | :target: http://ForTheBadge.com 1849 | .. |ForTheBadge uses-js| image:: http://ForTheBadge.com/images/badges/uses-js.svg 1850 | :target: http://ForTheBadge.com 1851 | .. |ForTheBadge makes-people-smile| image:: http://ForTheBadge.com/images/badges/makes-people-smile.svg 1852 | :target: http://ForTheBadge.com 1853 | .. |ForTheBadge powered-by-electricity| image:: http://ForTheBadge.com/images/badges/powered-by-electricity.svg 1854 | :target: http://ForTheBadge.com 1855 | .. |ForTheBadge winter-is-coming| image:: http://ForTheBadge.com/images/badges/winter-is-coming.svg 1856 | :target: http://ForTheBadge.com 1857 | .. |GitHub license badges| image:: https://img.shields.io/github/license/Naereen/badges.svg 1858 | :target: https://github.com/Naereen/badges/blob/master/LICENSE 1859 | .. |Maintenance| image:: https://img.shields.io/badge/Maintained%3F-yes-green.svg 1860 | :target: https://GitHub.com/Naereen/badges/graphs/commit-activity 1861 | .. |Analytics badges| image:: https://ga-beacon.appspot.com/UA-38514290-17/github.com/Naereen/badges/README.md?pixel 1862 | :target: https://GitHub.com/Naereen/badges/ 1863 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate --------------------------------------------------------------------------------