2020-07-17 14:08:27 +03:00
|
|
|
|
---
|
|
|
|
|
template: overrides/main.html
|
|
|
|
|
---
|
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
# Setting up navigation
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
A clear and concise navigation structure is an important aspect of good project
|
2020-11-15 17:34:44 +03:00
|
|
|
|
documentation. Material for MkDocs provides a multitude of options to configure
|
|
|
|
|
the behavior of navigational elements, including [tabs][1] and [sections][2],
|
|
|
|
|
and its flag-ship feature: [instant loading][3].
|
2020-11-01 17:43:26 +03:00
|
|
|
|
|
|
|
|
|
[1]: #navigation-tabs
|
|
|
|
|
[2]: #navigation-sections
|
|
|
|
|
[3]: #instant-loading
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
|
|
### Instant loading
|
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
[:octicons-file-code-24: Source][4] ·
|
2020-09-27 20:21:16 +03:00
|
|
|
|
:octicons-unlock-24: Feature flag
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
When _instant loading_ is enabled, clicks on all internal links will be
|
|
|
|
|
intercepted and dispatched via [XHR][5] without fully reloading the page. It
|
2020-07-23 14:17:50 +03:00
|
|
|
|
can be enabled via `mkdocs.yml` with:
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
2020-09-27 11:13:41 +03:00
|
|
|
|
- navigation.instant
|
2020-07-17 14:08:27 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The resulting page is parsed and injected and all event handlers and components
|
2020-07-26 15:46:09 +03:00
|
|
|
|
are rebound automatically. This means that __Material for MkDocs behaves like a
|
2020-07-17 14:08:27 +03:00
|
|
|
|
Single Page Application__, which is especially useful for large documentation
|
2020-07-26 15:46:09 +03:00
|
|
|
|
sites that come with a massive search index, as the search index will now
|
|
|
|
|
remain intact in-between document switches.
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
_Material for MkDocs is the only MkDocs theme offering this feature._
|
2020-08-11 20:14:42 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
[4]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/javascripts/integrations/instant/index.ts
|
|
|
|
|
[5]: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
|
2020-08-11 20:14:42 +03:00
|
|
|
|
|
2020-07-20 20:28:13 +03:00
|
|
|
|
### Navigation tabs
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
[:octicons-file-code-24: Source][6] · :octicons-unlock-24: Feature flag
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
When _tabs_ are enabled, top-level sections are rendered in a menu layer below
|
2020-11-15 17:34:44 +03:00
|
|
|
|
the header for viewports above `1220px`, but remain as-is on mobile. They can be
|
2020-07-23 14:17:50 +03:00
|
|
|
|
enabled via `mkdocs.yml` with:
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
2020-09-27 11:13:41 +03:00
|
|
|
|
- navigation.tabs
|
2020-07-17 14:08:27 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
=== "With tabs"
|
|
|
|
|
|
|
|
|
|
[![With tabs][7]][7]
|
|
|
|
|
|
|
|
|
|
=== "Without tabs"
|
|
|
|
|
|
|
|
|
|
[![Without tabs][8]][8]
|
|
|
|
|
|
2020-07-17 14:08:27 +03:00
|
|
|
|
Note that all __top-level pages__ (i.e. all top-level entries that directly
|
2020-11-07 20:01:46 +03:00
|
|
|
|
refer to an `*.md` file) defined inside the [`nav`][9] entry of `mkdocs.yml`
|
2020-07-21 14:33:44 +03:00
|
|
|
|
will be grouped under the first tab which will receive the title of the first
|
|
|
|
|
page.
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
This means that there will effectively be no collapsible subsections for the
|
|
|
|
|
first tab, because each subsection is rendered as another tab. If you want more
|
|
|
|
|
fine-grained control, _i.e. collapsible subsections for the first tab_, you can
|
|
|
|
|
use __top-level sections__, so that the top-level is entirely made up of
|
|
|
|
|
sections. This is illustrated in the following example:
|
|
|
|
|
|
|
|
|
|
=== "Top-level pages"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
nav:
|
2020-07-19 23:23:26 +03:00
|
|
|
|
- Tab 1 + Page 1.1
|
|
|
|
|
- Page 1.2
|
2020-07-17 14:08:27 +03:00
|
|
|
|
- Tab 2:
|
|
|
|
|
- Page 2.1
|
|
|
|
|
- Page 2.2
|
2020-07-19 23:23:26 +03:00
|
|
|
|
- Page 2.3
|
|
|
|
|
- Page 1.3
|
2020-07-17 14:08:27 +03:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "Top-level sections"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
nav:
|
|
|
|
|
- Tab 1:
|
|
|
|
|
- Page 1.1
|
|
|
|
|
- Page 1.2
|
2020-07-19 23:23:26 +03:00
|
|
|
|
- Page 1.3
|
2020-07-17 14:08:27 +03:00
|
|
|
|
- Tab 2:
|
|
|
|
|
- Page 2.1
|
|
|
|
|
- Page 2.2
|
2020-07-19 23:23:26 +03:00
|
|
|
|
- Page 2.3
|
2020-07-17 14:08:27 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
Also note that tabs are only shown for larger screens, so make sure that
|
|
|
|
|
navigation is plausible on mobile devices. As another example, see the
|
|
|
|
|
[`mkdocs.yml`][10] used to render these pages.
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
[6]: https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/tabs.html
|
2020-11-07 20:01:46 +03:00
|
|
|
|
[7]: ../assets/screenshots/navigation-tabs.png
|
|
|
|
|
[8]: ../assets/screenshots/navigation.png
|
|
|
|
|
[9]: https://www.mkdocs.org/user-guide/configuration/#nav
|
|
|
|
|
[10]: https://github.com/squidfunk/mkdocs-material/blob/master/mkdocs.yml
|
2020-11-01 17:43:26 +03:00
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
#### Sticky navigation tabs
|
|
|
|
|
|
|
|
|
|
[:octicons-file-code-24: Source][11] ·
|
|
|
|
|
:octicons-unlock-24: Feature flag ·
|
|
|
|
|
:octicons-beaker-24: Experimental ·
|
|
|
|
|
[:octicons-heart-fill-24:{: .tx-heart } Insiders only][11]{: .tx-insiders }
|
|
|
|
|
|
|
|
|
|
When _sticky tabs_ are enabled, navigation tabs will lock below the header and
|
|
|
|
|
always remain visible when scrolling down. Just add the following two feature
|
|
|
|
|
flags to `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
|
|
|
|
- navigation.tabs
|
|
|
|
|
- navigation.tabs.sticky
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "With sticky tabs"
|
|
|
|
|
|
|
|
|
|
[![With sticky tabs][12]][12]
|
|
|
|
|
|
|
|
|
|
=== "Without sticky tabs"
|
|
|
|
|
|
|
|
|
|
[![Without sticky tabs][13]][13]
|
|
|
|
|
|
|
|
|
|
[11]: ../insiders.md
|
|
|
|
|
[12]: ../assets/screenshots/navigation-tabs-sticky.png
|
|
|
|
|
[13]: ../assets/screenshots/navigation-tabs-collapsed.png
|
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
### Navigation sections
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
[:octicons-file-code-24: Source][11] ·
|
2020-11-01 17:43:26 +03:00
|
|
|
|
:octicons-unlock-24: Feature flag ·
|
2020-11-07 20:01:46 +03:00
|
|
|
|
[:octicons-heart-fill-24:{: .tx-heart } Insiders only][11]{: .tx-insiders }
|
2020-11-01 17:43:26 +03:00
|
|
|
|
|
|
|
|
|
When _sections_ are enabled, top-level sections are rendered as groups in the
|
2020-11-15 17:34:44 +03:00
|
|
|
|
sidebar for viewports above `1220px`, but remain as-is on mobile. They can also
|
|
|
|
|
be enabled via `mkdocs.yml`:
|
2020-11-01 17:43:26 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
|
|
|
|
- navigation.sections
|
|
|
|
|
```
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
=== "With sections"
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[![With sections][14]][14]
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
|
|
|
|
=== "Without sections"
|
|
|
|
|
|
|
|
|
|
[![Without sections][8]][8]
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[14]: ../assets/screenshots/navigation-sections.png
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
2020-11-01 17:43:26 +03:00
|
|
|
|
Both feature flags, _tabs_ and _sections_, can be combined with each other. If
|
|
|
|
|
both feature flags are enabled, sections are rendered for 2nd level navigation
|
|
|
|
|
items.
|
|
|
|
|
|
|
|
|
|
### Navigation expansion
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
[:octicons-file-code-24: Source][11] ·
|
2020-11-01 17:43:26 +03:00
|
|
|
|
:octicons-unlock-24: Feature flag ·
|
2020-11-07 20:01:46 +03:00
|
|
|
|
[:octicons-heart-fill-24:{: .tx-heart } Insiders only][11]{: .tx-insiders }
|
2020-11-01 17:43:26 +03:00
|
|
|
|
|
|
|
|
|
When _expansion_ is enabled, the left sidebar will expand all collapsible
|
|
|
|
|
subsections by default, so the user doesn't have to open subsections manually.
|
|
|
|
|
It can be enabled via `mkdocs.yml` with:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
|
|
|
|
- navigation.expand
|
|
|
|
|
```
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
=== "With expansion"
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[![With expansion][15]][15]
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
|
|
|
|
=== "Without expansion"
|
|
|
|
|
|
|
|
|
|
[![Without expansion][8]][8]
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[15]: ../assets/screenshots/navigation-expand.png
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
2020-07-17 14:08:27 +03:00
|
|
|
|
### Table of contents
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[:octicons-file-code-24: Source][16] · [:octicons-workflow-24: Extension][17]
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
The [Table of contents][18] extension, which is part of the standard Markdown
|
2020-07-17 14:08:27 +03:00
|
|
|
|
library, provides some options that are supported by Material for MkDocs to
|
2020-07-17 15:33:52 +03:00
|
|
|
|
customize its appearance:
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-07-22 15:05:07 +03:00
|
|
|
|
`permalink`{: #permalink }
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
: :octicons-milestone-24: Default: `false` – This option adds an anchor link
|
|
|
|
|
containing the paragraph symbol `¶` or another custom symbol at the end of
|
|
|
|
|
each headline, exactly like on the page you're currently viewing, which
|
|
|
|
|
Material for MkDocs will make appear on hover:
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
=== "¶"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- toc:
|
|
|
|
|
permalink: true
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "⚓︎"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- toc:
|
|
|
|
|
permalink: ⚓︎
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-22 15:05:07 +03:00
|
|
|
|
`slugify`{: #slugify }
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
: :octicons-milestone-24: Default: `headerid.slugify` – This option allows for
|
|
|
|
|
customization of the slug function. For some languages, the default may not
|
|
|
|
|
produce good and readable identifiers. Consider using another slug function
|
2020-12-13 18:41:18 +03:00
|
|
|
|
like for example those from [Python Markdown Extensions][19]:
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
=== "Unicode"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- toc:
|
2020-09-06 12:49:05 +03:00
|
|
|
|
slugify: !!python/name:pymdownx.slugs.uslugify
|
2020-07-17 14:08:27 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-07-17 15:33:52 +03:00
|
|
|
|
=== "Unicode, case-sensitive"
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- toc:
|
2020-09-06 12:49:05 +03:00
|
|
|
|
slugify: !!python/name:pymdownx.slugs.uslugify_cased
|
2020-07-17 14:08:27 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-07-22 15:05:07 +03:00
|
|
|
|
`toc_depth`{: #toc_depth }
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-07-20 16:18:09 +03:00
|
|
|
|
: :octicons-milestone-24: Default: `6` – Define the range of levels to be
|
|
|
|
|
included in the table of contents. This may be useful for project
|
|
|
|
|
documentation with deeply structured headings to decrease the length of the
|
|
|
|
|
table of contents, or to remove the table of contents altogether:
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
|
|
|
|
=== "Hide levels 4-6"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- toc:
|
|
|
|
|
toc_depth: 3
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "Hide table of contents"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- toc:
|
|
|
|
|
toc_depth: 0
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
Note that MkDocs will not generate [anchor links][20] for levels outside
|
2020-11-07 20:01:46 +03:00
|
|
|
|
the range defined with `toc_depth`. However, Material for MkDocs also allows
|
2020-12-13 18:41:18 +03:00
|
|
|
|
to [hide the table of contents][21] on a specific page while keeping
|
2020-11-07 20:01:46 +03:00
|
|
|
|
permalinks.
|
|
|
|
|
|
2020-07-17 14:08:27 +03:00
|
|
|
|
_Material for MkDocs doesn't provide official support for the other options of
|
2020-07-19 23:23:26 +03:00
|
|
|
|
this extension, so they may be supported but can also yield weird results. Use
|
|
|
|
|
them at your own risk._
|
2020-07-17 14:08:27 +03:00
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[16]: https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/toc.html
|
|
|
|
|
[17]: https://python-markdown.github.io/extensions/toc/
|
|
|
|
|
[18]: https://python-markdown.github.io/extensions/toc/#usage
|
|
|
|
|
[19]: https://facelessuser.github.io/pymdown-extensions/extras/slugs/
|
|
|
|
|
[20]: #permalink
|
|
|
|
|
[21]: #hide-the-sidebars
|
2020-09-19 17:55:20 +03:00
|
|
|
|
|
2020-11-15 17:34:44 +03:00
|
|
|
|
#### Navigation integration
|
|
|
|
|
|
|
|
|
|
[:octicons-file-code-24: Source][11] ·
|
|
|
|
|
:octicons-unlock-24: Feature flag ·
|
|
|
|
|
[:octicons-heart-fill-24:{: .tx-heart } Insiders only][11]{: .tx-insiders }
|
|
|
|
|
|
|
|
|
|
When _integration_ is enabled, the table of contents is rendered as part of
|
|
|
|
|
the navigation for viewports above `1220px`, but remain as-is on mobile. This
|
|
|
|
|
can be enabled via `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
|
|
|
|
- toc.integrate
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "Integrate table of contents"
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[![Integrate table of contents][22]][22]
|
2020-11-15 17:34:44 +03:00
|
|
|
|
|
|
|
|
|
=== "Separate table of contents"
|
|
|
|
|
|
|
|
|
|
[![Separate table of contents][8]][8]
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[22]: ../assets/screenshots/toc-integrate.png
|
2020-11-15 17:34:44 +03:00
|
|
|
|
|
|
|
|
|
The content section will now always stretch to the right side, resulting in
|
|
|
|
|
more space for your content. This feature flag can be combined with all other
|
|
|
|
|
feature flags, e.g. [tabs][1] and [sections][2].
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
### Hide the sidebars
|
2020-09-19 17:55:20 +03:00
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
[:octicons-file-code-24: Source][11] ·
|
|
|
|
|
[:octicons-heart-fill-24:{: .tx-heart } Insiders only][11]{: .tx-insiders }
|
2020-09-19 17:55:20 +03:00
|
|
|
|
|
2020-11-07 20:18:22 +03:00
|
|
|
|
Sometimes it's desirable to hide the navigation and/or table of contents
|
|
|
|
|
sidebar, especially when there's a single navigation item. This can be done for
|
2020-12-13 18:41:18 +03:00
|
|
|
|
any page using the [Metadata][23] extension:
|
2020-09-19 17:55:20 +03:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2020-11-07 20:01:46 +03:00
|
|
|
|
---
|
|
|
|
|
hide:
|
|
|
|
|
- navigation # Hide navigation
|
|
|
|
|
- toc # Hide table of contents
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
...
|
2020-09-19 17:55:20 +03:00
|
|
|
|
```
|
|
|
|
|
|
2020-11-07 20:01:46 +03:00
|
|
|
|
=== "Hide navigation"
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[![Hide navigation][24]][24]
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
|
|
|
|
=== "Hide table of contents"
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[![Hide table of contents][25]][25]
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
|
|
|
|
=== "Hide both"
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[![Hide navigation and table of contents][26]][26]
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[23]: ../../reference/meta-tags/#metadata
|
|
|
|
|
[24]: ../assets/screenshots/hide-navigation.png
|
|
|
|
|
[25]: ../assets/screenshots/hide-toc.png
|
|
|
|
|
[26]: ../assets/screenshots/hide-navigation-toc.png
|
2020-11-07 20:01:46 +03:00
|
|
|
|
|
2020-07-23 14:17:50 +03:00
|
|
|
|
## Customization
|
|
|
|
|
|
|
|
|
|
### Keyboard shortcuts
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[:octicons-file-code-24: Source][27] ·
|
2020-07-23 14:17:50 +03:00
|
|
|
|
:octicons-mortar-board-24: Difficulty: _easy_
|
|
|
|
|
|
|
|
|
|
Material for MkDocs includes several keyboard shortcuts that make it possible
|
|
|
|
|
to navigate your project documentation via keyboard. There're two modes:
|
|
|
|
|
|
|
|
|
|
`search`{: #search }
|
|
|
|
|
|
|
|
|
|
: This mode is active when the _search is focused_. It provides several key
|
|
|
|
|
bindings to make search accessible and navigable via keyboard:
|
|
|
|
|
|
2020-07-27 13:05:07 +03:00
|
|
|
|
* ++arrow-down++ , ++arrow-up++ : select next / previous result
|
|
|
|
|
* ++esc++ , ++tab++ : close search dialog
|
|
|
|
|
* ++enter++ : follow selected result
|
2020-07-23 14:17:50 +03:00
|
|
|
|
|
|
|
|
|
`global`{: #global }
|
|
|
|
|
|
2020-07-26 15:46:09 +03:00
|
|
|
|
: This mode is active when _search is not focussed_ and when there's no other
|
|
|
|
|
focussed element that is susceptible to keyboard input. The following keys
|
|
|
|
|
are bound:
|
2020-07-23 14:17:50 +03:00
|
|
|
|
|
2020-07-27 13:05:07 +03:00
|
|
|
|
* ++f++ , ++s++ , ++slash++ : open search dialog
|
|
|
|
|
* ++p++ , ++comma++ : go to previous page
|
|
|
|
|
* ++n++ , ++period++ : go to next page
|
2020-07-23 14:17:50 +03:00
|
|
|
|
|
|
|
|
|
Let's say you want to bind some action to the ++x++ key. By using [additional
|
2020-12-13 18:41:18 +03:00
|
|
|
|
JavaScript][28], you can subscribe to the `keyboard$` observable and attach
|
2020-07-23 14:17:50 +03:00
|
|
|
|
your custom event listener:
|
|
|
|
|
|
|
|
|
|
``` js
|
2020-09-19 17:19:18 +03:00
|
|
|
|
app.keyboard$.subscribe(function(key) {
|
2020-07-23 14:17:50 +03:00
|
|
|
|
if (key.mode === "global" && key.type === "x") {
|
|
|
|
|
/* Add custom keyboard handler here */
|
|
|
|
|
key.claim()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The call to `#!js key.claim()` will essentially execute `#!js preventDefault()`
|
2020-07-26 15:46:09 +03:00
|
|
|
|
on the underlying event, so the keypress will not propagate further and touch
|
2020-07-23 14:17:50 +03:00
|
|
|
|
other event listeners.
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[27]: https://github.com/squidfunk/mkdocs-material/blob/master/src/assets/javascripts/integrations/keyboard/index.ts
|
|
|
|
|
[28]: ../customization.md#additional-javascript
|
2020-11-15 17:34:44 +03:00
|
|
|
|
|
|
|
|
|
### Content area width
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[:octicons-file-code-24: Source][29] ·
|
2020-11-15 17:34:44 +03:00
|
|
|
|
:octicons-mortar-board-24: Difficulty: _easy_
|
|
|
|
|
|
|
|
|
|
The width of the content area is set so the length of each line doesn't exceed
|
|
|
|
|
80-100 characters, depending on the width of the characters. While this
|
|
|
|
|
is a reasonable default, as longer lines tend to be harder to read, it may be
|
|
|
|
|
desirable to increase the overall width of the content area, or even make it
|
|
|
|
|
stretch to the entire available space.
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
This can easily be achieved with an [additional stylesheet][30] and a few lines
|
2020-11-15 17:34:44 +03:00
|
|
|
|
of CSS:
|
|
|
|
|
|
|
|
|
|
=== "Increase width"
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
.md-grid {
|
|
|
|
|
max-width: 1440px;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "Stretch to fit"
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
.md-grid {
|
|
|
|
|
max-width: initial;
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2020-12-13 18:41:18 +03:00
|
|
|
|
[29]: https://github.com/squidfunk/mkdocs-material/blob/aeaa00a625abf952f355164de02c539b061e6127/src/assets/stylesheets/main/layout/_base.scss#L99-L104
|
|
|
|
|
[30]: ../customization.md#additional-css
|