├── .github ├── FUNDING.yml ├── pr-labeler.yml ├── pull_request_template.md └── workflows │ └── pr-labeler.yml ├── .unibeautifyrc.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _config.yml └── assets ├── Banner └── Markdown-badges-banner-kohasummons.png └── css └── style.scss /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: ileriayo 2 | -------------------------------------------------------------------------------- /.github/pr-labeler.yml: -------------------------------------------------------------------------------- 1 | new-badge: ['new/*', 'badge/*'] 2 | new-section: section/* 3 | typo-fix: fixed/* 4 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 3 | 4 | ## Info 5 | 6 | |Name|Category|Background Color|Logo Color| 7 | |:--:|:--:|:--:|:--:| 8 | Quill|ORM| `#52B0E7`|`#ffffff` 9 | 10 | 11 | ## Preview 12 | 13 | | Badge | url | 14 | | ----- | --- | 15 | | ![Cisco](https://img.shields.io/badge/cisco-%23049fd9.svg?style=for-the-badge&logo=cisco&logoColor=black) | `![Cisco](https://img.shields.io/badge/cisco-%23049fd9.svg?style=for-the-badge&logo=cisco&logoColor=black)` | 16 | -------------------------------------------------------------------------------- /.github/workflows/pr-labeler.yml: -------------------------------------------------------------------------------- 1 | name: PR Labeler 2 | on: 3 | pull_request: 4 | types: [opened] 5 | 6 | jobs: 7 | pr-labeler: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: TimonVS/pr-labeler-action@v3 11 | with: 12 | configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value 13 | env: 14 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -------------------------------------------------------------------------------- /.unibeautifyrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "Markdown": { 3 | "beautifiers": [ 4 | "Prettier" 5 | ], 6 | "__pragma_insert__": true, 7 | "wrap_line_length": 0 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to markdown-badges 2 | 3 | :tada: First off, thanks for taking the time to contribute! :tada: 4 | 5 | ## The following steps are a set of guidelines for contributing to markdown-badges: 6 | 7 | 1. Create a [fork](https://docs.github.com/en/get-started/quickstart/fork-a-repo) of the existing repository. This will be your local copy where you can propose new changes. 8 | 2. Update the local clone or make changes directly on the forked repo, adding a badge with its appropriate hex-color in the given format: 9 | 10 | 3. Copy this markdown 👇 11 | 12 | `![Badge Name](https://img.shields.io/badge/-%23.svg?style=for-the-badge&logo=&logoColor=)` 13 | 14 | 4. Replace the following: `` , `` , `` 15 | 16 | > **:fire: Important:** All of the badges are ordered alphabetically. Hence, while contributing, make sure to order to add the new badges in an alphabetical order. 17 | 18 | > **:bulb: Tip:** You can check available icons for your `` in [Simple Icons slugs](https://github.com/simple-icons/simple-icons/blob/develop/slugs.md) or [Simple Icons website](https://simpleicons.org/). 19 | 20 | 5. Create a [Pull Request](https://docs.github.com/en/get-started/quickstart/contributing-to-projects#making-a-pull-request) with your proposed changes. 21 | 22 | Yayyy, You are all done with the steps! Now just sit back and watch while your Pull request is reviewed and ultimately merged. 🎊 23 | 24 |
25 | 26 | ## 🖋️ When thinking of where to add your badge: 27 | Favor general, i.e. widely known, categories rather than specific (sometimes unknown) categories, so that it is easier to find. For instance, when a person thinks of Tor Browser, they'd want to find it where other browsers are listed. 28 | 29 | Similarly, we have several Google products (Play, Drive, Chrome, etc), however, they are not listed under a category for Google. 30 | 31 | Think of the categories as `what they do` rather than `who they are`. 32 | So, instead of a category titled **Google** for instance, Chrome would be placed in a category like **Browser**. 33 | 34 | Having the categories based on `who they are` will quickly become clumsy. And clumsy doesn't feel right. 35 | 36 | ## 🖋️ When your badge doesn't fit into any of the existing categories: 37 | We've covered lots of ground and categories but if you find that your new badge doesn't fit into an existing category, create a new one. It would be lovely having a new category around. 38 | 39 | Some Guidelines for starting a new category: 40 | - Check the existing categories one more time to be really sure your new badge won't fit into one. 😄 41 | - Use a simple title. For example, instead of `Banks and money companies`, use `Finance` 42 | - Use a title that obeys the `what they do` principle above. 43 | - Place your shiny new category in the right alphabetical position. 44 | 45 |
46 | 47 | ##### Thanks! again to ALL the [amazing contributors!](https://github.com/Ileriayo/markdown-badges/graphs/contributors) 🙏 48 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Ileriayo Adebiyi 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-leap-day 2 | markdown: GFM 3 | plugins: 4 | - jekyll-relative-links 5 | relative_links: 6 | enabled: true 7 | collections: true 8 | include: 9 | - README.md 10 | -------------------------------------------------------------------------------- /assets/Banner/Markdown-badges-banner-kohasummons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/universal9122/appleluckycoder/7ed2d329092751d326593393fafe12180919425e/assets/Banner/Markdown-badges-banner-kohasummons.png -------------------------------------------------------------------------------- /assets/css/style.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | 6 | nav { 7 | max-height: 50%; 8 | overflow: auto; 9 | padding-right: 1em; 10 | } 11 | 12 | footer p { 13 | margin: 0; 14 | } --------------------------------------------------------------------------------