2020-07-16 22:31:39 +02:00
|
|
|
|
---
|
|
|
|
|
template: overrides/main.html
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Customization
|
|
|
|
|
|
|
|
|
|
Project documentation is as diverse as the projects themselves and Material for
|
2020-08-30 17:37:49 +02:00
|
|
|
|
MkDocs is a great starting point for making it look beautiful. However, as you
|
|
|
|
|
write your documentation, you may reach a point where small adjustments are
|
2020-07-16 22:31:39 +02:00
|
|
|
|
necessary to preserve your brand's style.
|
|
|
|
|
|
|
|
|
|
## Adding assets
|
|
|
|
|
|
|
|
|
|
[MkDocs][1] provides several ways to customize a theme. In order to make a few
|
2020-08-30 17:37:49 +02:00
|
|
|
|
tweaks to Material for MkDocs, you can just add your stylesheets and JavaScript
|
2020-07-16 22:31:39 +02:00
|
|
|
|
files to the `docs` directory.
|
|
|
|
|
|
|
|
|
|
[1]: https://www.mkdocs.org
|
|
|
|
|
|
2020-09-19 14:34:40 +02:00
|
|
|
|
### Additional CSS
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
If you want to tweak some colors or change the spacing of certain elements,
|
|
|
|
|
you can do this in a separate stylesheet. The easiest way is by creating a
|
|
|
|
|
new stylesheet file in the `docs` directory:
|
|
|
|
|
|
2020-08-30 17:37:49 +02:00
|
|
|
|
``` sh
|
|
|
|
|
.
|
|
|
|
|
├─ docs/
|
|
|
|
|
│ └─ stylesheets/
|
|
|
|
|
│ └─ extra.css
|
|
|
|
|
└─ mkdocs.yml
|
2020-07-16 22:31:39 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Then, add the following line to `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra_css:
|
|
|
|
|
- stylesheets/extra.css
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Spin up the [live preview server][2] and start typing your changes in your
|
2021-10-10 12:19:14 +02:00
|
|
|
|
additional style sheet file – you should see them almost instantly after saving.
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
[2]: creating-your-site.md#previewing-as-you-write
|
|
|
|
|
|
|
|
|
|
### Additional JavaScript
|
|
|
|
|
|
|
|
|
|
The same is true for additional JavaScript. If you want to integrate another
|
|
|
|
|
syntax highlighter or add some custom logic to your theme, create a new
|
|
|
|
|
JavaScript file in the `docs` directory:
|
|
|
|
|
|
2020-08-30 17:37:49 +02:00
|
|
|
|
``` sh
|
|
|
|
|
.
|
|
|
|
|
├─ docs/
|
|
|
|
|
│ └─ javascripts/
|
|
|
|
|
│ └─ extra.js
|
|
|
|
|
└─ mkdocs.yml
|
2020-07-16 22:31:39 +02:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Then, add the following line to `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra_javascript:
|
|
|
|
|
- javascripts/extra.js
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Further assistance can be found in the [MkDocs documentation][3].
|
|
|
|
|
|
|
|
|
|
[3]: https://www.mkdocs.org/user-guide/styling-your-docs/#customizing-a-theme
|
|
|
|
|
|
|
|
|
|
## Extending the theme
|
|
|
|
|
|
2020-08-30 17:37:49 +02:00
|
|
|
|
If you want to alter the HTML source (e.g. add or remove some parts), you can
|
2020-07-16 22:31:39 +02:00
|
|
|
|
extend the theme. MkDocs supports [theme extension][4], an easy way to override
|
2020-08-30 17:37:49 +02:00
|
|
|
|
parts of Material for MkDocs without forking from git. This ensures that you
|
|
|
|
|
can update to the latest version more easily.
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
[4]: https://www.mkdocs.org/user-guide/styling-your-docs/#using-the-theme-custom_dir
|
|
|
|
|
|
|
|
|
|
### Setup and theme structure
|
|
|
|
|
|
2020-08-30 17:37:49 +02:00
|
|
|
|
Enable Material for MkDocs as usual in `mkdocs.yml`, and create a new folder
|
|
|
|
|
for `overrides` which you then reference using the `custom_dir` key:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
name: material
|
|
|
|
|
custom_dir: overrides
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
!!! warning "Theme extension prerequisites"
|
|
|
|
|
|
|
|
|
|
As the `custom_dir` variable is used for the theme extension process,
|
|
|
|
|
Material for MkDocs needs to be installed via `pip` and referenced with the
|
|
|
|
|
`name` parameter in `mkdocs.yml`. It will not work when cloning from `git`.
|
|
|
|
|
|
|
|
|
|
The structure in the `overrides` directory must mirror the directory structure
|
|
|
|
|
of the original theme, as any file in the `overrides` directory will replace the
|
|
|
|
|
file with the same name which is part of the original theme. Besides, further
|
|
|
|
|
assets may also be put in the `overrides` directory.
|
|
|
|
|
|
|
|
|
|
The directory layout of the theme is as follows:
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
.
|
2020-07-22 11:57:41 +02:00
|
|
|
|
├─ .icons/ # Bundled icon sets
|
2020-07-16 22:31:39 +02:00
|
|
|
|
├─ assets/
|
|
|
|
|
│ ├─ images/ # Images and icons
|
|
|
|
|
│ ├─ javascripts/ # JavaScript
|
|
|
|
|
│ └─ stylesheets/ # Stylesheets
|
|
|
|
|
├─ partials/
|
2020-07-20 15:18:09 +02:00
|
|
|
|
│ ├─ integrations/ # Third-party integrations
|
2020-07-22 11:57:41 +02:00
|
|
|
|
│ │ ├─ analytics.html # - Google Analytics
|
|
|
|
|
│ │ └─ disqus.html # - Disqus
|
2020-12-30 13:21:27 +01:00
|
|
|
|
│ ├─ languages/ # Localized languages
|
2020-07-16 22:31:39 +02:00
|
|
|
|
│ ├─ footer.html # Footer bar
|
|
|
|
|
│ ├─ header.html # Header bar
|
|
|
|
|
│ ├─ language.html # Localized labels
|
|
|
|
|
│ ├─ logo.html # Logo in header and sidebar
|
|
|
|
|
│ ├─ nav.html # Main navigation
|
|
|
|
|
│ ├─ nav-item.html # Main navigation item
|
|
|
|
|
│ ├─ palette.html # Color palette
|
|
|
|
|
│ ├─ search.html # Search box
|
|
|
|
|
│ ├─ social.html # Social links
|
|
|
|
|
│ ├─ source.html # Repository information
|
|
|
|
|
│ ├─ source-date.html # Last updated date
|
|
|
|
|
│ ├─ source-link.html # Link to source file
|
|
|
|
|
│ ├─ tabs.html # Tabs navigation
|
|
|
|
|
│ ├─ tabs-item.html # Tabs navigation item
|
|
|
|
|
│ ├─ toc.html # Table of contents
|
|
|
|
|
│ └─ toc-item.html # Table of contents item
|
|
|
|
|
├─ 404.html # 404 error page
|
|
|
|
|
├─ base.html # Base template
|
|
|
|
|
└─ main.html # Default page
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Overriding partials
|
|
|
|
|
|
2020-08-30 17:37:49 +02:00
|
|
|
|
In order to override a partial, we can replace it with a file of the same name
|
2020-12-07 23:24:20 +01:00
|
|
|
|
and location in the `overrides` directory. For example, to replace the original
|
2020-08-30 17:37:49 +02:00
|
|
|
|
`footer.html`, create a `footer.html` file in the `overrides/partials`
|
|
|
|
|
directory:
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
.
|
|
|
|
|
├─ overrides/
|
|
|
|
|
│ └─ partials/
|
|
|
|
|
│ └─ footer.html
|
|
|
|
|
└─ mkdocs.yml
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
MkDocs will now use the new partial when rendering the theme. This can be done
|
|
|
|
|
with any file.
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2021-10-10 21:04:22 +02:00
|
|
|
|
### Overriding blocks <small>recommended</small> { #overriding-blocks data-toc-label="Overriding blocks" }
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2020-08-30 17:37:49 +02:00
|
|
|
|
Besides overriding partials, it's also possible to override (and extend)
|
|
|
|
|
_template blocks_, which are defined inside the templates and wrap specific
|
|
|
|
|
features. To override a block, create a `main.html` file inside the `overrides`
|
|
|
|
|
directory:
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
.
|
|
|
|
|
├─ overrides/
|
|
|
|
|
│ └─ main.html
|
|
|
|
|
└─ mkdocs.yml
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Then, e.g. to override the site title, add the following line to `main.html`:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2020-07-27 14:44:47 +02:00
|
|
|
|
``` html
|
2020-07-16 22:31:39 +02:00
|
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block htmltitle %}
|
|
|
|
|
<title>Lorem ipsum dolor sit amet</title>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Material for MkDocs provides the following template blocks:
|
|
|
|
|
|
2021-04-10 11:13:32 +02:00
|
|
|
|
| Block name | Purpose |
|
2021-02-28 22:40:01 +01:00
|
|
|
|
|:------------------|:------------------------------------------------|
|
|
|
|
|
| `analytics` | Wraps the Google Analytics integration |
|
|
|
|
|
| `announce` | Wraps the announcement bar |
|
|
|
|
|
| `config` | Wraps the JavaScript application config |
|
|
|
|
|
| `content` | Wraps the main content |
|
|
|
|
|
| `disqus` | Wraps the Disqus integration |
|
|
|
|
|
| `extrahead` | Empty block to add custom meta tags |
|
|
|
|
|
| `fonts` | Wraps the font definitions |
|
|
|
|
|
| `footer` | Wraps the footer with navigation and copyright |
|
|
|
|
|
| `header` | Wraps the fixed header bar |
|
|
|
|
|
| `hero` | Wraps the hero teaser (if available) |
|
|
|
|
|
| `htmltitle` | Wraps the `<title>` tag |
|
|
|
|
|
| `libs` | Wraps the JavaScript libraries (header) |
|
2021-03-28 19:46:59 +02:00
|
|
|
|
| `outdated` | Wraps the version warning |
|
2021-02-28 22:40:01 +01:00
|
|
|
|
| `scripts` | Wraps the JavaScript application (footer) |
|
|
|
|
|
| `source` | Wraps the linked source files |
|
|
|
|
|
| `site_meta` | Wraps the meta tags in the document head |
|
|
|
|
|
| `site_nav` | Wraps the site navigation and table of contents |
|
|
|
|
|
| `styles` | Wraps the stylesheets (also extra sources) |
|
|
|
|
|
| `tabs` | Wraps the tabs navigation (if available) |
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
For more on this topic refer to the [MkDocs documentation][5].
|
|
|
|
|
|
2021-04-10 11:01:45 +02:00
|
|
|
|
[5]: https://www.mkdocs.org/user-guide/styling-your-docs/#overriding-template-blocks
|
2021-04-10 11:13:32 +02:00
|
|
|
|
|
|
|
|
|
#### Additional variables
|
|
|
|
|
|
|
|
|
|
Besides template blocks, Material for MkDocs provides extra variables for parts
|
|
|
|
|
that cannot be overridden with template blocks (due to technical limitations of
|
|
|
|
|
the template engine). If you want to add further information after the _Made
|
|
|
|
|
with Material for MkDocs_ hint in the footer, add the following line to
|
|
|
|
|
`main.html`:
|
2021-04-10 11:01:45 +02:00
|
|
|
|
|
|
|
|
|
``` html
|
|
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% set extracopyright %}
|
2021-10-10 21:04:22 +02:00
|
|
|
|
<!-- Add additional copyright information here -->
|
2021-04-10 11:01:45 +02:00
|
|
|
|
{% endset %}
|
|
|
|
|
```
|
2021-04-10 11:13:32 +02:00
|
|
|
|
|
|
|
|
|
Material for MkDocs provides the following additional variables:
|
|
|
|
|
|
|
|
|
|
| Block name | Purpose |
|
|
|
|
|
|:------------------|:------------------------------------------------|
|
|
|
|
|
| `extracopyright` | Adds custom copyright information |
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
## Theme development
|
|
|
|
|
|
2021-02-26 16:41:00 +01:00
|
|
|
|
Material for MkDocs is built on top of [TypeScript][6], [RxJS][7] and [SASS][8],
|
|
|
|
|
and uses a lean, custom build process to put everything together.[^1] If you
|
|
|
|
|
want to make more fundamental changes, it may be necessary to make the
|
|
|
|
|
adjustments directly in the source of the theme and recompile it.
|
|
|
|
|
|
|
|
|
|
[^1]:
|
|
|
|
|
Prior to version 7.0, the build was based on Webpack. This led to broken
|
|
|
|
|
builds due to frequent incompatibilities with loaders and plugins, so we
|
|
|
|
|
decided to swap Webpack for a leaner custom solution which is now based on
|
|
|
|
|
[RxJS][7] as the application itself. This enabled us to remove more than
|
|
|
|
|
500 dependencies (~30% less).
|
|
|
|
|
|
|
|
|
|
[6]: https://www.typescriptlang.org/
|
|
|
|
|
[7]: https://github.com/ReactiveX/rxjs
|
2020-07-16 22:31:39 +02:00
|
|
|
|
[8]: https://sass-lang.com
|
|
|
|
|
|
|
|
|
|
### Environment setup
|
|
|
|
|
|
|
|
|
|
In order to start development on Material for MkDocs, a [Node.js][9] version of
|
2021-02-26 16:41:00 +01:00
|
|
|
|
at least 14 is required. First, clone the repository:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2020-07-23 14:37:20 +02:00
|
|
|
|
```
|
2020-07-16 22:31:39 +02:00
|
|
|
|
git clone https://github.com/squidfunk/mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Next, all dependencies need to be installed, which is done with:
|
|
|
|
|
|
2020-07-23 14:37:20 +02:00
|
|
|
|
```
|
2020-07-16 22:31:39 +02:00
|
|
|
|
cd mkdocs-material
|
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
pip install mkdocs-minify-plugin
|
2020-11-26 17:11:30 +01:00
|
|
|
|
pip install mkdocs-redirects
|
2020-07-16 22:31:39 +02:00
|
|
|
|
npm install
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
[9]: https://nodejs.org
|
|
|
|
|
|
|
|
|
|
### Development mode
|
|
|
|
|
|
2021-02-22 23:28:43 +01:00
|
|
|
|
Start the watcher with:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2020-07-23 14:37:20 +02:00
|
|
|
|
```
|
2020-07-16 22:31:39 +02:00
|
|
|
|
npm start
|
|
|
|
|
```
|
|
|
|
|
|
2021-05-01 20:26:54 +02:00
|
|
|
|
Then, in a second session, start the MkDocs live preview server with:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
2020-07-23 14:37:20 +02:00
|
|
|
|
```
|
2020-07-16 22:31:39 +02:00
|
|
|
|
mkdocs serve
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Point your browser to [localhost:8000][10] and you should see this documentation
|
|
|
|
|
in front of you.
|
|
|
|
|
|
|
|
|
|
!!! warning "Automatically generated files"
|
|
|
|
|
|
|
|
|
|
Never make any changes in the `material` directory, as the contents of this
|
|
|
|
|
directory are automatically generated from the `src` directory and will be
|
2021-06-12 13:29:20 +02:00
|
|
|
|
overwritten when the theme is built.
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
[10]: http://localhost:8000
|
|
|
|
|
|
2020-07-17 13:08:27 +02:00
|
|
|
|
### Building the theme
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
|
|
When you're finished making your changes, you can build the theme by invoking:
|
|
|
|
|
|
2020-07-23 14:37:20 +02:00
|
|
|
|
```
|
2020-07-16 22:31:39 +02:00
|
|
|
|
npm run build
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This triggers the production-level compilation and minification of all
|
|
|
|
|
stylesheets and JavaScript sources. When the command exits, the final files are
|
|
|
|
|
located in the `material` directory. Add the `theme_dir` variable pointing to
|
|
|
|
|
the aforementioned directory in the original `mkdocs.yml`.
|
|
|
|
|
|
|
|
|
|
Now you can run `mkdocs build` and you should see your documentation with your
|
|
|
|
|
changes to the original theme.
|