mirror of https://github.com/docker/docs.git
Expose level 4 headings in the right-hand toc
This commit is contained in:
parent
2acdd55e1c
commit
ec5dc89d85
|
@ -66,7 +66,7 @@ defaults:
|
|||
layout: docs
|
||||
sitemap: false
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
toc_max: 4
|
||||
|
||||
- scope:
|
||||
path: engine/reference/commandline
|
||||
|
|
|
@ -47,7 +47,7 @@ defaults:
|
|||
values:
|
||||
layout: docs
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
toc_max: 4
|
||||
|
||||
# Set the correct edit-URL for upstream resources. We usually don't create a direct
|
||||
# edit link for these, and instead point to the directory that contains the file.
|
||||
|
|
|
@ -44,11 +44,11 @@ For components and controls we are using [Bootstrap](https://getbootstrap.com)
|
|||
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="headingOne">
|
||||
<h4 class="panel-title">
|
||||
<h5 class="panel-title">
|
||||
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
|
||||
Collapsible Group Item #1
|
||||
</a>
|
||||
</h4>
|
||||
</h5>
|
||||
</div>
|
||||
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
|
||||
<div class="panel-body">
|
||||
|
@ -58,11 +58,11 @@ For components and controls we are using [Bootstrap](https://getbootstrap.com)
|
|||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="headingTwo">
|
||||
<h4 class="panel-title">
|
||||
<h5 class="panel-title">
|
||||
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
|
||||
Collapsible Group Item #2
|
||||
</a>
|
||||
</h4>
|
||||
</h5>
|
||||
</div>
|
||||
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
|
||||
<div class="panel-body">
|
||||
|
@ -72,11 +72,11 @@ For components and controls we are using [Bootstrap](https://getbootstrap.com)
|
|||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="headingThree">
|
||||
<h4 class="panel-title">
|
||||
<h5 class="panel-title">
|
||||
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
||||
Collapsible Group Item #3
|
||||
</a>
|
||||
</h4>
|
||||
</h5>
|
||||
</div>
|
||||
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
|
||||
<div class="panel-body">
|
||||
|
@ -92,11 +92,11 @@ For components and controls we are using [Bootstrap](https://getbootstrap.com)
|
|||
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="headingOne">
|
||||
<h4 class="panel-title">
|
||||
<h5 class="panel-title">
|
||||
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
|
||||
Collapsible Group Item #1
|
||||
</a>
|
||||
</h4>
|
||||
</h5>
|
||||
</div>
|
||||
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
|
||||
<div class="panel-body">
|
||||
|
@ -106,11 +106,11 @@ For components and controls we are using [Bootstrap](https://getbootstrap.com)
|
|||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="headingTwo">
|
||||
<h4 class="panel-title">
|
||||
<h5 class="panel-title">
|
||||
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
|
||||
Collapsible Group Item #2
|
||||
</a>
|
||||
</h4>
|
||||
</h5>
|
||||
</div>
|
||||
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
|
||||
<div class="panel-body">
|
||||
|
@ -120,11 +120,11 @@ For components and controls we are using [Bootstrap](https://getbootstrap.com)
|
|||
</div>
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading" role="tab" id="headingThree">
|
||||
<h4 class="panel-title">
|
||||
<h5 class="panel-title">
|
||||
<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
||||
Collapsible Group Item #3
|
||||
</a>
|
||||
</h4>
|
||||
</h5>
|
||||
</div>
|
||||
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
|
||||
<div class="panel-body">
|
||||
|
|
|
@ -5,8 +5,6 @@ title: Docker Dashboard
|
|||
redirect_from:
|
||||
- /docker-for-mac/dashboard/
|
||||
- /docker-for-windows/dashboard/
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
---
|
||||
|
||||
The Docker Dashboard provides a simple interface that enables you to manage your containers, applications, and images directly from your machine without having to use the CLI to perform core actions.
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
description: Dev Environments
|
||||
keywords: Dev Environments, share, collaborate, local
|
||||
title: Development Environments Preview
|
||||
toc_min: 1
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
Dev Environments enable you to collaborate easily by allowing you to share work-in-progress code with your team members. When using Dev Environments, you can easily set up repeatable development environments, keeping the environment details versioned along with your code. You can also share your work-in-progress code with your team members in just one click and without having to deal with any merge conflicts while moving between Git branches to get your code on to their machine.
|
||||
|
|
|
@ -6,7 +6,6 @@ redirect_from:
|
|||
- /docker-for-mac/faqs/
|
||||
- /docker-for-windows/faqs/
|
||||
title: Frequently asked questions
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
## General
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
description: Docker Desktop overview
|
||||
keywords: Desktop, Docker, GUI, run, docker, local, machine
|
||||
title: Docker Desktop overview
|
||||
toc_min: 1
|
||||
toc_max: 2
|
||||
redirect_from:
|
||||
- /desktop/opensource/
|
||||
- /docker-for-mac/opensource/
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
description: Docker Desktop for Linux (Beta)
|
||||
keywords: docker, Desktop for linux, beta, tech preview
|
||||
title: Docker Desktop for Linux (Beta)
|
||||
toc_min: 1
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
Welcome to the Docker Desktop for Linux (Beta). The Beta program is aimed at early adopters who would like to try Docker Desktop for Linux and provide feedback.
|
||||
|
|
|
@ -2,8 +2,6 @@
|
|||
description: Docker Desktop for Apple silicon
|
||||
keywords: Docker Desktop, M1, Silicon, Apple,
|
||||
title: Docker Desktop for Apple silicon
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
redirect_from:
|
||||
- /docker-for-mac/apple-m1/
|
||||
- /docker-for-mac/apple-silicon/
|
||||
|
|
|
@ -17,8 +17,6 @@ redirect_from:
|
|||
- /docker-for-mac/osxfs/
|
||||
- /docker-for-mac/osxfs-caching/
|
||||
title: Docker Desktop for Mac user manual
|
||||
toc_min: 1
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
Welcome to Docker Desktop! The Docker Desktop for Mac user manual provides information on how to configure and manage your Docker Desktop settings.
|
||||
|
|
|
@ -5,7 +5,6 @@ redirect_from:
|
|||
- /docker-for-mac/troubleshoot/
|
||||
- /mackit/troubleshoot/
|
||||
title: Logs and troubleshooting
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
{% include upgrade-cta.html
|
||||
|
|
|
@ -14,8 +14,6 @@ redirect_from:
|
|||
- /winkit/getting-started/
|
||||
|
||||
title: Docker Desktop for Windows user manual
|
||||
toc_min: 1
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
Welcome to Docker Desktop! The Docker Desktop for Windows user manual provides information on how to configure and manage your Docker Desktop settings.
|
||||
|
|
|
@ -6,7 +6,6 @@ redirect_from:
|
|||
- /docker-for-win/troubleshoot/
|
||||
- /docker-for-windows/troubleshoot/
|
||||
title: Logs and troubleshooting
|
||||
toc_max: 2
|
||||
---
|
||||
|
||||
{% include upgrade-cta.html
|
||||
|
|
|
@ -5,8 +5,6 @@ redirect_from:
|
|||
- /docker-for-windows/wsl/
|
||||
- /docker-for-windows/wsl-tech-preview/
|
||||
title: Docker Desktop WSL 2 backend
|
||||
toc_min: 2
|
||||
toc_max: 3
|
||||
---
|
||||
|
||||
> **Update to the Docker Desktop terms**
|
||||
|
|
Loading…
Reference in New Issue