Skip to content

Badges

There are multiple different badge types, which different syntaxes. All badges need to be in their now line and have no indent / leading whitespace. Badges inside (fenced) code bocks are also not interpreted.

If multiple consecutive lines contain badges, they will be displayed next to each other (if space permits it). If you want each badge to be on it's won line, add an empty line between the badges.

Simple badges

[Required version | 0.3.0+]

Simple badges are just a badge that does not react to clicks.

Example markdown:

|Example badge|works|

Result:

[Example badge | works]

[Required version | 0.3.0+]

Link badges link to a given URL. They only have the (simplified version of) the hostname specified in the link as visible value

Example markdown:

L|Bug Tracker|https://github.com/six-two/mkdocs-badges/issues|
L|Simplified hostname demo|https://www.example.com|

Result:

[Required version | 0.3.0+]

Reference link badges link to a given URL using reference links. They are similar to link badges, but display the reference name as value.

Warning: Reference links rely on the underlying markdown parser. Thus, there badges may not work correctly when inside HTML (like a <div> element). To work araound this, make sure markdown parsing inside HTML is enabled, or only put he badges in <span> elements, which do (to my knowledge) not prevent the parsing of Markdown contents.

Example markdown:

R|reflink badge|example_ref|
|normal badge with reflink|should work|r:example_ref|

[example_ref]: https://www.example.com

Result:

[reflink badge | example_ref] [normal badge with reflink | should work]

Copy badges

[Required version | 0.3.0+]

Copy badges copy their value to the users clipboard when clicked upon

Example markdown:

C|Password|monkey123|
C|Linux check ethernet settings|ip a s eth0|

Result:

[Password | monkey123] [Linux check ethernet settings | ip a s eth0]

Install badges

[Required version | 0.3.0+]

Install badges are designed to make it easy for users to install software. Sadly they are a bit unintuitive to use. Clicking on the badge title (left side) will copy the command to install the software (git clone ..., pip install ..., sudo apt install ..., etc) to the user's clipboard. To show them that this is possible, the cursor takes the form of a question mark. To show them what has happened, a popup is shown once they clicked.

The right side is a link to the software on the given platform (GitHub repo, PyPI page, linux package tracker, etc).

Example markdown:

Markdown code:

I|github|six-two/mkdocs-badges|
I|pypi|mkdocs|

Result:

[Github | six-two/mkdocs-badges] [PyPI | mkdocs]

Customizing

A list of currently supported badge types can be found in the Builtin section of the tests page. You can define your own install badge types by creating a JSON like the following:

{
    "name_to_use_in_markdown": {
        "title": "Shown name on the badge",
        "link_template": "https://url-that-is-opened/when-the-user-clicks-the-right-side-of-the-badge?value={{value}}",
        "command_template": "install command {{value}}"
    },
    "custom_test": {
        "title": "Custom Install Badge",
        "link_template": "https://example.com/#{{value}}",
        "command_template": "echo '{{value}}'"
    }
}

The {{value}} placeholder in the link_template and command_template fields will be replaced with the value that is specified in the markdown. So for example I|custom_test|demo_value| would have the link https://example.com/#demo_value and the command to copy echo 'demo_value'.

You then use the install_badge_data option for the plugin, by setting the following in your mkdocs.yml:

plugins:
- badges:
    install_badge_data: path/to/your-custom-install-badges.json

Tag badges

[Required version | 0.3.3+]

Requirements

This will likely requires you to use Mkdocs Material and enabling it's tags plugin. I haven't tested it, but strongly assume that the badges plugin will need to be before the tags plugin to function properly.

Tag badges add a tag to the page it apears on. The tags name is derived from the badge's values. Clicking the badge should open the tags list page at the location where all pages with this tag are listed (assuming ``)

For example the following badge would add the programming_language_python tag:

T|Programming language|Python|

[Programming language | Python]

Custom badges

[Required version | 0.3.0+]

Custom badges offer all features supported by the other badge types (except tag badges). They have however a more verbose syntax. On the upside you are in total control about the supplied values, since none of them are automaticaly generated.

Short prefix Long prefix Conflicts with Description
. class: - Add a class to the badge, which can be used for custom styling. Can be specified multiple time to add multiple classes. Can also be used with any other badge type
c: copy: reflink Copy the given text when the badge is clicked
l: link: reflink Clicking on the badge will direct the user to the given URL
r: reflink: copy, link Similar to link, but instead it uses the reference link syntax

Example markdown:

|Link badge equivalent|example.com|link:https://www.example.com|
|Copy badge equivalent|text to show|copy:text to copy|
|Styled differently|by custom HTML classes|class:version|
|Install badge equivalent|mkdocs-badge|link:https://github.com/six-two/mkdocs-badges|copy:git clone https://github.com/six-two/mkdocs-badges.git|
|Reflink badge equivalent|example.com|r:example_ref|

Result:

[Link badge equivalent | example.com] [Copy badge equivalent | text to show] [Styled differently | by custom HTML classes] [Install badge equivalent | mkdocs-badge] [Reflink badge equivalent | example.com]

Single element badge

[Required version | 0.3.4+]

This badge only contains a single element (the title) and has no second element (the value). The same extra attributes that can be set for custom badges can also be used here. However, you can not use a (ref-)link and a text to copy for the same badge, since only one element exists.

For example the following badge would add the programming_language_python tag:

S|Single element badge||
S||You can also define the value here|
S|Single element with link||link:https://example.com|
S|Single element with text to copy||copy:single element|

[Single element badge] [You can also define the value here] [Single element with link] [Single element with text to copy]