1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-13 18:40:54 +01:00
mkdocs-material/docs/reference/content-tabs.md

251 lines
6.0 KiB
Markdown
Raw Normal View History

2020-07-20 19:28:13 +02:00
---
2021-12-16 17:08:57 +01:00
icon: material/tab
2020-07-20 19:28:13 +02:00
---
# Content tabs
Sometimes, it's desirable to group alternative content under different tabs,
e.g. when describing how to access an API from different languages or
environments. Material for MkDocs allows for beautiful and functional tabs,
grouping code blocks and other content.
2020-07-20 19:28:13 +02:00
## Configuration
2021-10-04 23:36:31 +02:00
This configuration enables content tabs, and allows to nest arbitrary content
inside content tabs, including code blocks and ... more content tabs! Add the
2021-10-04 23:36:31 +02:00
following lines to `mkdocs.yml`:
2020-07-20 19:28:13 +02:00
``` yaml
markdown_extensions:
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
```
2020-07-20 19:28:13 +02:00
See additional configuration options:
2020-07-20 19:28:13 +02:00
- [SuperFences]
- [Tabbed]
2021-10-02 15:24:09 +02:00
[SuperFences]: ../setup/extensions/python-markdown-extensions.md#superfences
[Tabbed]: ../setup/extensions/python-markdown-extensions.md#tabbed
2021-10-02 15:24:09 +02:00
2022-07-07 18:59:59 +02:00
### Anchor links
2022-06-04 13:29:47 +02:00
[:octicons-heart-fill-24:{ .mdx-heart } Sponsors only][Insiders]{ .mdx-insiders } ·
[:octicons-tag-24: insiders-4.17.0][Insiders] ·
:octicons-beaker-24: Experimental
In order to link to content tabs and share them more easily, [Insiders] adds
an anchor link to each content tab automatically, which you can copy via right
click or open in a new tab:
=== "Open me in a new tab ..."
=== "... or me ..."
=== "... or even me"
You can copy the link of the tab and create a link on the same or any other
page. For example, you can [jump to the third tab above this paragraph][tab_1]
or to the [publishing guide for Insiders][tab_2].
2022-10-02 17:34:23 +02:00
!!! tip "Readable anchor links"
[Python Markdown Extensions] 9.6 adds support for [slugification] of
content tabs, which produces nicer looking and more readable anchor links.
Enable the slugify function with the following lines:
``` yaml
markdown_extensions:
- pymdownx.tabbed:
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
```
Fore more information, please [see the extension guide][slugification].
2022-06-04 13:29:47 +02:00
[Insiders]: ../insiders/index.md
2022-10-02 17:34:23 +02:00
[tab_1]: #-or-even-me
[tab_2]: ../publishing-your-site.md#insiders
[Python Markdown Extensions]: https://facelessuser.github.io/pymdown-extensions/
[slugification]: ../setup/extensions/python-markdown-extensions.md#+pymdownx.tabbed.slugify
2022-06-04 13:29:47 +02:00
### Linked content tabs
2021-10-02 15:24:09 +02:00
2022-09-11 19:25:40 +02:00
[:octicons-tag-24: 8.3.0][Linked content tabs support] ·
2023-01-01 19:17:33 +01:00
:octicons-unlock-24: Feature flag
2021-10-02 15:24:09 +02:00
When enabled, all content tabs across the whole documentation site will be
linked and switch to the same label when the user clicks on a tab. Add the
following lines to `mkdocs.yml`:
2021-10-02 15:24:09 +02:00
``` yaml
theme:
features:
- content.tabs.link
```
2021-10-02 15:24:09 +02:00
Content tabs are linked based on their label, not offset. This means that all
tabs with the same label will be activated when a user clicks a content tab
regardless of order inside a container. Furthermore, this feature is fully
integrated with [instant loading] and persisted across page loads.
2020-07-20 19:28:13 +02:00
2022-09-11 19:25:40 +02:00
=== "Feature enabled"
2020-07-20 19:28:13 +02:00
2022-09-11 19:25:40 +02:00
[![Linked content tabs enabled]][Linked content tabs enabled]
2020-07-21 16:01:22 +02:00
2022-09-11 19:25:40 +02:00
=== "Feature disabled"
2020-07-21 16:01:22 +02:00
2022-09-11 19:25:40 +02:00
[![Linked content tabs disabled]][Linked content tabs disabled]
2020-07-21 16:01:22 +02:00
2022-09-11 19:25:40 +02:00
[Linked content tabs support]: https://github.com/squidfunk/mkdocs-material/releases/tag/8.3.0
[instant loading]: ../setup/setting-up-navigation.md#instant-loading
2022-09-11 19:25:40 +02:00
[Linked content tabs enabled]: ../assets/screenshots/content-tabs-link.png
[Linked content tabs disabled]: ../assets/screenshots/content-tabs.png
2020-07-21 16:01:22 +02:00
2020-07-20 19:28:13 +02:00
## Usage
### Grouping code blocks
Code blocks are one of the primary targets to be grouped, and can be considered
a special case of content tabs, as tabs with a single code block are always
rendered without horizontal spacing:
2020-07-20 19:28:13 +02:00
``` title="Content tabs with code blocks"
2020-07-20 19:28:13 +02:00
=== "C"
``` c
#include <stdio.h>
int main(void) {
printf("Hello world!\n");
return 0;
}
```
=== "C++"
``` c++
#include <iostream>
int main(void) {
std::cout << "Hello world!" << std::endl;
return 0;
}
```
```
<div class="result" markdown>
2020-07-20 19:28:13 +02:00
=== "C"
``` c
#include <stdio.h>
int main(void) {
printf("Hello world!\n");
return 0;
}
```
=== "C++"
``` c++
#include <iostream>
int main(void) {
std::cout << "Hello world!" << std::endl;
return 0;
}
```
</div>
2020-07-20 19:28:13 +02:00
### Grouping other content
When a content tab contains more than one code block, it is rendered with
horizontal spacing. Vertical spacing is never added, but can be achieved
by nesting tabs in other blocks:
2020-07-20 19:28:13 +02:00
``` title="Content tabs"
2020-07-20 19:28:13 +02:00
=== "Unordered list"
2020-07-27 12:05:07 +02:00
* Sed sagittis eleifend rutrum
* Donec vitae suscipit est
* Nulla tempor lobortis orci
2020-07-20 19:28:13 +02:00
=== "Ordered list"
1. Sed sagittis eleifend rutrum
2. Donec vitae suscipit est
3. Nulla tempor lobortis orci
```
<div class="result" markdown>
2020-07-20 19:28:13 +02:00
=== "Unordered list"
2020-07-27 12:05:07 +02:00
* Sed sagittis eleifend rutrum
* Donec vitae suscipit est
* Nulla tempor lobortis orci
2020-07-20 19:28:13 +02:00
=== "Ordered list"
1. Sed sagittis eleifend rutrum
2. Donec vitae suscipit est
3. Nulla tempor lobortis orci
</div>
2020-07-20 19:28:13 +02:00
### Embedded content
When [SuperFences] is enabled, content tabs can contain arbitrary nested
content, including further content tabs, and can be nested in other blocks like
[admonitions] or blockquotes:
2020-07-20 19:28:13 +02:00
``` title="Content tabs in admonition"
2020-07-20 19:38:11 +02:00
!!! example
2020-07-20 19:34:44 +02:00
=== "Unordered List"
2022-04-24 13:56:55 +02:00
``` markdown
2020-07-27 12:05:07 +02:00
* Sed sagittis eleifend rutrum
* Donec vitae suscipit est
* Nulla tempor lobortis orci
2020-07-20 19:34:44 +02:00
```
=== "Ordered List"
2022-04-24 13:56:55 +02:00
``` markdown
2020-07-20 19:34:44 +02:00
1. Sed sagittis eleifend rutrum
2. Donec vitae suscipit est
3. Nulla tempor lobortis orci
```
```
<div class="result" markdown>
2020-07-20 19:34:44 +02:00
2020-07-20 19:38:11 +02:00
!!! example
2020-07-20 19:28:13 +02:00
2020-07-20 19:34:44 +02:00
=== "Unordered List"
2020-07-20 19:28:13 +02:00
2022-04-24 13:56:55 +02:00
``` markdown
2020-07-27 12:05:07 +02:00
* Sed sagittis eleifend rutrum
* Donec vitae suscipit est
* Nulla tempor lobortis orci
2020-07-20 19:28:13 +02:00
```
2020-07-20 19:34:44 +02:00
=== "Ordered List"
2020-07-20 19:28:13 +02:00
2022-04-24 13:56:55 +02:00
``` markdown
2020-07-20 19:28:13 +02:00
1. Sed sagittis eleifend rutrum
2. Donec vitae suscipit est
3. Nulla tempor lobortis orci
```
</div>
2020-07-20 19:28:13 +02:00
[admonitions]: admonitions.md