--- description: components and formatting examples used in Docker's docs title: Tabs toc_max: 3 --- ## Examples
##### A Markdown header - list item 1 - list item 2
##### Another Markdown header - list item 3 - list item 4
#### Synchronizing multiple tab groups Consider an example where you have something like one tab per language, and you have multiple tab sets like this on a page. You might want them to all toggle together. In the following example, selecting `Go` or `Python` in one tab set toggles the other tab set to match. We have Javascript that loads on every page that lets you do this by setting the `data-group` attributes to be the same. The `data-target` attributes still need to point to unique div IDs.
Go content here
Python content here
And some content between the two sets, just for fun...
Go content here
Python content here
## HTML ```html
##### A Markdown header - list item 1 - list item 2
##### Another Markdown header - list item 3 - list item 4
``` ```html
Go content here
Python content here
And some content between the two sets, just for fun...
Go content here
Python content here
```