Setting up tags¶
Material for MkDocs adds first-class support for categorizing pages with tags, which adds the possibility to group related pages and make them discoverable via search and a dedicated tags index. If your documentation is large, tags can help to discover relevant information faster.
Configuration¶
Built-in tags plugin¶
The built-in tags plugin adds the ability to categorize any page with tags as part of the front matter of the page. In order to add support for tags, add the following lines to mkdocs.yml:
plugins:
- tags For a list of all settings, please consult the plugin documentation.
Tag icons and identifiers¶
experimental
Each tag can be associated with an icon, which is then rendered inside the tag. Before assigning icons to tags, associate each tag with a unique identifier, by adding the following to mkdocs.yml:
extra:
tags:
<tag>: <identifier> # (1) Next, each identifier can be associated with an icon, even a custom icon, by adding the following lines to mkdocs.yml under the theme.icon configuration setting:
theme:
icon:
tag:
<identifier>: <icon> # (1) theme:
icon:
tag:
default: <icon> Expand to inspect example
theme:
icon:
tag:
html: fontawesome/brands/html5
js: fontawesome/brands/js
css: fontawesome/brands/css3
extra:
tags:
HTML5: html
JavaScript: js
CSS: css Usage¶
Adding tags¶
tags
When the built-in tags plugin is enabled, tags can be added for a document with the front matter tags property. Add the following lines at the top of a Markdown file:
---
tags:
- HTML5
- JavaScript
- CSS
---
... The page will now render with those tags above the main headline and within the search preview, which now allows to find pages by tags.
How to set tags for an entire folder?
With the help of the built-in meta plugin, you can ensure that tags are set for an entire section and all nested pages, by creating a .meta.yml file in the corresponding folder with the following content:
tags:
- HTML5
- JavaScript
- CSS The tags set in .meta.yml are merged and deduplicated with the tags defined for a page, which means you can define common tags in .meta.yml and then add specific tags for each page. The tags in .meta.yml are appended.
Adding a tags index¶
tags
The built-in tags plugin allows to define a file to render a tags index, which can be any page that is part of the nav section. To add a tags index, create a page, e.g. tags.md:
# Tags
Following is a list of relevant tags:
<!-- material/tags --> The tags marker specifies the position of the tags index, i.e. it is replaced with the actual tags index when the page is rendered. You can include arbitrary content before and after the marker:

Advanced features¶
Configurable listings¶
experimental
Listings can be configured in mkdocs.yml or directly at the location of the marker that you position in a Markdown document. Some examples:
Use [scoped listings]: limit the tags index to pages that are on the same level of the subsection of the documentation the page is in:
html<!-- material/tags { scope: true } -->List only specific tags: limit the tags index to a single or multiple selected tags, e.g.,
FooandBar, excluding all other tags:html<!-- material/tags { include: [Foo, Bar] } -->Exclude pages with specific tags: don’t include pages that are tagged with specific tags, e.g.
Internal. This can be any tag, including a shadow tag:html<!-- material/tags { exclude: [Internal] } -->Enable or disable tags inside the table of contents: specify whether the table of contents lists all tags under the nearest headline:
html<!-- material/tags { toc: false } -->
See the listing configuration for all options.
Scoped listings¶
experimental
If your documentation is large, you might want to consider using scoped listings which will only include pages that are on the same level or below the page containing the listing. Just use:
<!-- material/tags { scope: true } --> If you plan to use multiple scoped indexes, it’s a good idea to define a listing configuration in mkdocs.yml, which you can then reference by its id:
plugins:
- tags:
listings_map:
scoped:
scope: true You can now use:
<!-- material/tags scoped --> Shadow tags¶
experimental
Shadow tags are tags that are solely meant to organization, which can be included or excluded for rendering with a simple flag. They can be enumerated in the shadow_tags setting:
plugins:
- tags:
shadow_tags:
- Draft
- Internal If a document is tagged with Draft, the tag will only be rendered if shadow setting is enabled, and excluded when it is disabled. This is an excellent opportunity for using tags for structuring.
Nested tags¶
experimental
The tags_hierarchy_separator allows to create hierarchies of tags, e.g., Foo/Bar. Nested tags will be rendered as children of the parent tag:
plugins:
- tags:
tags_hierarchy: true Hiding tags on a page¶
While the tags are rendered above the main headline, sometimes, it might be desirable to hide them for a specific page, which can be achieved with the front matter hide property:
---
hide:
- tags
---
# Page title
...