2016-02-09 21:59:37 +01:00
|
|
|
|
# Getting started
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
While there are several ways of installing Material for MkDocs, the recommended
|
|
|
|
|
methods are either by using `pip` – the Python package manager – or by pulling
|
|
|
|
|
the [official Docker image][1].
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[1]: https://hub.docker.com/r/squidfunk/mkdocs-material/
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
### with pip <small>recommended</small>
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
> All operating systems
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Material for MkDocs can be installed with `pip`:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
pip install mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Note that this will automatically install compatible versions of [MkDocs][2],
|
|
|
|
|
[Markdown][3], [Pygments][4] and [PyMdown Extensions][5]. Material for MkDocs
|
|
|
|
|
always strives to support the latest versions, so there's no need to install
|
|
|
|
|
those packages separately.
|
2017-01-14 13:43:19 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
!!! tip "Installation in a virtual environment"
|
2017-01-14 13:43:19 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The best way to make sure that you end up with the correct versions and
|
|
|
|
|
without any incompatibility problems between packages it to use a __virtual
|
|
|
|
|
environment__. Don't know what this is or how to set it up? We recommend
|
|
|
|
|
to start by reading a [tutorial on virtual environments][6] for Python.
|
2017-03-11 18:01:14 +01:00
|
|
|
|
|
|
|
|
|
!!! warning "Installation on macOS"
|
|
|
|
|
|
|
|
|
|
When you're running the pre-installed version of Python on macOS, `pip`
|
|
|
|
|
tries to install packages in a folder for which your user might not have
|
2017-03-11 18:36:34 +01:00
|
|
|
|
the adequate permissions. There are two possible solutions for this:
|
2017-03-11 18:01:14 +01:00
|
|
|
|
|
|
|
|
|
1. **Installing in user space** (recommended): Provide the `--user` flag
|
|
|
|
|
to the install command and `pip` will install the package in a user-site
|
|
|
|
|
location. This is the recommended way.
|
|
|
|
|
|
|
|
|
|
2. **Switching to a homebrewed Python**: Upgrade your Python installation
|
|
|
|
|
to a self-contained solution by installing Python with Homebrew. This
|
2020-03-09 16:48:52 +01:00
|
|
|
|
should eliminate a lot of problems you could be having with `pip`.
|
2017-03-11 18:01:14 +01:00
|
|
|
|
|
|
|
|
|
!!! failure "Error: unrecognized theme 'material'"
|
|
|
|
|
|
2017-03-11 18:36:34 +01:00
|
|
|
|
If you run into this error, the most common reason is that you installed
|
2020-03-09 16:48:52 +01:00
|
|
|
|
MkDocs through some package manager (e.g. Homebrew or `apt-get`) and
|
|
|
|
|
Material for MkDocs through `pip`, so both packages end up in different
|
2017-08-29 08:17:26 +02:00
|
|
|
|
locations. MkDocs only checks its install location for themes.
|
2017-03-11 18:01:14 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[2]: https://www.mkdocs.org
|
|
|
|
|
[3]: https://python-markdown.github.io/
|
|
|
|
|
[4]: https://pygments.org/
|
|
|
|
|
[5]: https://facelessuser.github.io/pymdown-extensions/
|
|
|
|
|
[6]: https://docs.python-guide.org/dev/virtualenvs/
|
|
|
|
|
|
|
|
|
|
### with docker <small>recommended</small>
|
|
|
|
|
|
|
|
|
|
> All operating systems
|
2017-11-05 14:40:30 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The official [Docker image][7] is a great way to get up and running in a few
|
|
|
|
|
minutes, as it comes with all dependencies pre-installed. Pull the image for the
|
|
|
|
|
`latest` version with:
|
2017-11-05 14:40:30 +01:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
docker pull squidfunk/mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The `mkdocs` executable is provided as an entrypoint and `serve` is the default
|
|
|
|
|
command. Start the development server in your project root – the folder where
|
|
|
|
|
`mkdocs.yml` resides — with:
|
|
|
|
|
|
|
|
|
|
=== "Unix"
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
=== "Windows"
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
docker run --rm -it -p 8000:8000 -v "%cd%":/docs squidfunk/mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
[7]: https://hub.docker.com/r/squidfunk/mkdocs-material/
|
2017-11-05 14:40:30 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
### with git
|
|
|
|
|
|
|
|
|
|
> All operating systems
|
|
|
|
|
|
|
|
|
|
Material for MkDocs can be directly used from [GitHub][8] by cloning the
|
|
|
|
|
repository into a subfolder of your project root which might be useful if you
|
|
|
|
|
want to use the very latest version:
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
git clone https://github.com/squidfunk/mkdocs-material.git
|
2017-11-05 14:40:30 +01:00
|
|
|
|
```
|
2020-03-09 16:48:52 +01:00
|
|
|
|
|
|
|
|
|
The theme will reside in the folder `mkdocs-material/material`.
|
|
|
|
|
|
|
|
|
|
[8]: https://github.com/squidfunk/mkdocs-material
|
|
|
|
|
|
|
|
|
|
### with choco
|
|
|
|
|
|
|
|
|
|
> Windows only
|
|
|
|
|
|
|
|
|
|
Material for MkDocs can be installed with [Chocolatey][9]:
|
|
|
|
|
|
|
|
|
|
``` dos
|
|
|
|
|
choco install mkdocs-material
|
2017-11-05 14:40:30 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Note that this is an [unofficial package][10] of Material for MkDocs, so please
|
|
|
|
|
understand that the maintainers cannot provide any support for when using this
|
|
|
|
|
method.
|
2018-01-13 17:19:07 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[9]: https://chocolatey.org
|
|
|
|
|
[10]: https://chocolatey.org/packages/mkdocs-material
|
2017-11-05 14:40:30 +01:00
|
|
|
|
|
2020-03-09 22:29:01 +01:00
|
|
|
|
## Configuration
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Depending on your installation method, you can now add the following lines to
|
2020-03-09 22:29:01 +01:00
|
|
|
|
`mkdocs.yml` in your project root. If you installed Material for MkDocs using
|
|
|
|
|
a package manager add:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2017-10-31 19:42:43 +01:00
|
|
|
|
theme:
|
2020-03-10 11:55:25 +01:00
|
|
|
|
name: material
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
If you cloned Material for MkDocs from GitHub add:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2017-10-31 19:42:43 +01:00
|
|
|
|
theme:
|
|
|
|
|
name: null
|
2020-03-10 11:55:25 +01:00
|
|
|
|
custom_dir: mkdocs-material/material
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
MkDocs includes a development server, so you can preview your changes as you
|
|
|
|
|
write your documentation. The development server can be started with the
|
|
|
|
|
following command:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
mkdocs serve
|
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Point your browser to [http://localhost:8000][11] and your documentation should
|
2020-03-09 22:29:01 +01:00
|
|
|
|
great you in a new look. If you're starting from scratch, the following
|
|
|
|
|
configuration can be used as a starting point:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
|
|
|
|
|
??? summary "Example configuration"
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
# Project information
|
|
|
|
|
site_name: Material for MkDocs
|
|
|
|
|
site_description: A Material Design theme for MkDocs
|
|
|
|
|
site_author: Martin Donath
|
|
|
|
|
site_url: https://squidfunk.github.io/mkdocs-material/
|
|
|
|
|
|
|
|
|
|
# Repository
|
|
|
|
|
repo_name: squidfunk/mkdocs-material
|
|
|
|
|
repo_url: https://github.com/squidfunk/mkdocs-material
|
|
|
|
|
|
|
|
|
|
# Copyright
|
|
|
|
|
copyright: Copyright © 2016 - 2020 Martin Donath
|
|
|
|
|
|
|
|
|
|
# Configuration
|
|
|
|
|
theme:
|
|
|
|
|
name: material
|
|
|
|
|
language: en
|
|
|
|
|
palette:
|
|
|
|
|
primary: indigo
|
|
|
|
|
accent: indigo
|
|
|
|
|
font:
|
|
|
|
|
text: Roboto
|
|
|
|
|
code: Roboto Mono
|
|
|
|
|
|
|
|
|
|
# Extras
|
|
|
|
|
extra:
|
|
|
|
|
social:
|
|
|
|
|
- icon: fontawesome/brands/github-alt
|
|
|
|
|
link: https://github.com/squidfunk
|
|
|
|
|
- icon: fontawesome/brands/twitter
|
|
|
|
|
link: https://twitter.com/squidfunk
|
|
|
|
|
- icon: fontawesome/brands/linkedin
|
2020-03-09 22:29:01 +01:00
|
|
|
|
link: https://linkedin.com/in/squidfunk
|
2020-03-09 16:48:52 +01:00
|
|
|
|
|
|
|
|
|
# Google Analytics
|
|
|
|
|
google_analytics:
|
|
|
|
|
- UA-XXXXXXXX-X
|
|
|
|
|
- auto
|
|
|
|
|
|
|
|
|
|
# Extensions
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- admonition
|
|
|
|
|
- codehilite:
|
|
|
|
|
guess_lang: false
|
|
|
|
|
- toc:
|
|
|
|
|
permalink: true
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
[11]: http://localhost:8000
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
### Feature flags
|
|
|
|
|
|
|
|
|
|
These optional features are hidden behind flags and can be explicitly enabled
|
|
|
|
|
in `mkdocs.yml`.
|
|
|
|
|
|
|
|
|
|
#### Instant loading :hatching_chick:
|
|
|
|
|
|
|
|
|
|
The (still experimental) *instant loading* feature will intercept clicks on all
|
|
|
|
|
internal links and dispatch them directly via XHR without a full page reload.
|
|
|
|
|
It can be enabled from `mkdocs.yml` with:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
|
|
|
|
- instant
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The resulting page is parsed and injected and all event handlers and components
|
|
|
|
|
are automatically rebound. This means that **Material for MkDocs behaves like a
|
|
|
|
|
Single Page Application**, which is especially useful for large documentation
|
|
|
|
|
sites that come with a huge search index, as the search index will now remain
|
|
|
|
|
intact in-between document switches.
|
|
|
|
|
|
|
|
|
|
#### Tabs
|
|
|
|
|
|
|
|
|
|
The *tabs* feature will render *top-level subsections* in another navigational
|
|
|
|
|
layer below the header on big screens (but leave them untouched on mobile). It
|
|
|
|
|
can be enabled from `mkdocs.yml` with:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
features:
|
|
|
|
|
- tabs
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Note that all *top-level pages* (i.e. all top-level entries that directly refer
|
|
|
|
|
to an `*.md` file) defined inside the `nav` entry of `mkdocs.yml` will be
|
|
|
|
|
grouped under the first tab which will receive the title of the first page.
|
|
|
|
|
|
|
|
|
|
### Language
|
|
|
|
|
|
|
|
|
|
> Default: `en`
|
|
|
|
|
|
|
|
|
|
Material for MkDocs supports internationalization (i18n) and provides
|
|
|
|
|
translations for all template variables and labels. You can set the language
|
|
|
|
|
from `mkdocs.yml` with:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
language: en
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The following language codes are supported:
|
|
|
|
|
|
2020-03-16 16:26:58 +01:00
|
|
|
|
<style>
|
|
|
|
|
.md-language-list {
|
|
|
|
|
-webkit-columns: 2;
|
|
|
|
|
-moz-columns: 2;
|
|
|
|
|
columns: 2;
|
|
|
|
|
}
|
|
|
|
|
.md-language-list li {
|
|
|
|
|
-webkit-column-break-inside: avoid;
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
break-inside: avoid;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<ul class="md-language-list">
|
2020-03-09 16:48:52 +01:00
|
|
|
|
<li><code>af</code> / Afrikaans</li>
|
|
|
|
|
<li><code>ar</code> / Arabic</li>
|
|
|
|
|
<li><code>ca</code> / Catalan</li>
|
|
|
|
|
<li><code>zh</code> / Chinese (Simplified)</li>
|
|
|
|
|
<li><code>zh-Hant</code> / Chinese (Traditional)</li>
|
|
|
|
|
<li><code>zh-TW</code> / Chinese (Taiwanese)</li>
|
|
|
|
|
<li><code>hr</code> / Croatian</li>
|
|
|
|
|
<li><code>cs</code> / Czech</li>
|
|
|
|
|
<li><code>da</code> / Danish</li>
|
|
|
|
|
<li><code>nl</code> / Dutch</li>
|
|
|
|
|
<li><code>en</code> / English</li>
|
|
|
|
|
<li><code>et</code> / Estonian</li>
|
|
|
|
|
<li><code>fi</code> / Finnish</li>
|
|
|
|
|
<li><code>fr</code> / French</li>
|
|
|
|
|
<li><code>gl</code> / Galician</li>
|
|
|
|
|
<li><code>de</code> / German</li>
|
|
|
|
|
<li><code>gr</code> / Greek</li>
|
|
|
|
|
<li><code>he</code> / Hebrew</li>
|
|
|
|
|
<li><code>hi</code> / Hindi</li>
|
|
|
|
|
<li><code>hu</code> / Hungarian</li>
|
|
|
|
|
<li><code>id</code> / Indonesian</li>
|
|
|
|
|
<li><code>it</code> / Italian</li>
|
|
|
|
|
<li><code>ja</code> / Japanese</li>
|
|
|
|
|
<li><code>kr</code> / Korean</li>
|
|
|
|
|
<li><code>no</code> / Norwegian</li>
|
|
|
|
|
<li><code>nn</code> / Norwegian (Nynorsk)</li>
|
|
|
|
|
<li><code>fa</code> / Persian</li>
|
|
|
|
|
<li><code>pl</code> / Polish</li>
|
|
|
|
|
<li><code>pt</code> / Portugese</li>
|
|
|
|
|
<li><code>ro</code> / Romanian</li>
|
|
|
|
|
<li><code>ru</code> / Russian</li>
|
|
|
|
|
<li><code>sr</code> / Serbian</li>
|
|
|
|
|
<li><code>sh</code> / Serbo-Croatian</li>
|
|
|
|
|
<li><code>sk</code> / Slovak</li>
|
|
|
|
|
<li><code>si</code> / Slovenian</li>
|
|
|
|
|
<li><code>es</code> / Spanish</li>
|
|
|
|
|
<li><code>sv</code> / Swedish</li>
|
|
|
|
|
<li><code>th</code> / Thai</li>
|
|
|
|
|
<li><code>tr</code> / Turkish</li>
|
|
|
|
|
<li><code>uk</code> / Ukrainian</li>
|
|
|
|
|
<li><code>vi</code> / Vietnamese</li>
|
|
|
|
|
<li>
|
2020-03-09 22:29:01 +01:00
|
|
|
|
<a href="https://bit.ly/38F5RCa">
|
|
|
|
|
Add language
|
|
|
|
|
</a>
|
2020-03-09 16:48:52 +01:00
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
2020-03-09 22:29:01 +01:00
|
|
|
|
While many languages are read `ltr` (left-to-right), Material for MkDocs also
|
|
|
|
|
supports `rtl` (right-to-left) directionality which is deduced from the selected
|
|
|
|
|
language, but can also be set with:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
|
|
|
|
direction: rtl
|
|
|
|
|
```
|
|
|
|
|
|
2017-10-31 19:42:43 +01:00
|
|
|
|
### Color palette
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The Material Design [color palette][12] comes with 20 hues, all of which are
|
|
|
|
|
included with Material for MkDocs. Primary and accent colors can be set from
|
|
|
|
|
the project root's `mkdocs.yml`:
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2017-10-31 19:42:43 +01:00
|
|
|
|
theme:
|
2016-02-24 17:31:01 +01:00
|
|
|
|
palette:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
primary: indigo
|
|
|
|
|
accent: indigo
|
2016-02-24 17:31:01 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
If the colors are set with these configuration options, an additional CSS file
|
|
|
|
|
that includes the hues of the color palette is automatically included and linked
|
2020-03-10 14:07:03 +01:00
|
|
|
|
from the template.
|
|
|
|
|
|
|
|
|
|
??? tip "Custom colors with CSS variables"
|
|
|
|
|
|
|
|
|
|
Material for MkDocs defines all colors as CSS variables. If you want to
|
|
|
|
|
customize the colors beyond the palette (e.g. to use your brand's colors),
|
|
|
|
|
you can add an [additional stylesheet][13] and override the defaults:
|
|
|
|
|
|
|
|
|
|
``` css
|
|
|
|
|
:root {
|
|
|
|
|
|
|
|
|
|
/* Default color shades */
|
|
|
|
|
--md-default-fg-color: ...;
|
|
|
|
|
--md-default-fg-color--light: ...;
|
|
|
|
|
--md-default-fg-color--lighter: ...;
|
|
|
|
|
--md-default-fg-color--lightest: ...;
|
|
|
|
|
--md-default-bg-color: ...;
|
|
|
|
|
--md-default-bg-color--light: ...;
|
|
|
|
|
--md-default-bg-color--lighter: ...;
|
|
|
|
|
--md-default-bg-color--lightest: ...;
|
|
|
|
|
|
|
|
|
|
/* Primary color shades */
|
|
|
|
|
--md-primary-fg-color: ...;
|
|
|
|
|
--md-primary-fg-color--light: ...;
|
|
|
|
|
--md-primary-fg-color--dark: ...;
|
|
|
|
|
--md-primary-bg-color: ...;
|
|
|
|
|
--md-primary-bg-color--light: ...;
|
|
|
|
|
|
|
|
|
|
/* Accent color shades */
|
|
|
|
|
--md-accent-fg-color: ...;
|
|
|
|
|
--md-accent-fg-color--transparent: ...;
|
|
|
|
|
--md-accent-bg-color: ...;
|
|
|
|
|
--md-accent-bg-color--light: ...;
|
|
|
|
|
|
|
|
|
|
/* Code block color shades */
|
|
|
|
|
--md-code-bg-color: ...;
|
|
|
|
|
--md-code-fg-color: ...;
|
|
|
|
|
}
|
|
|
|
|
```
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[12]: http://www.materialui.co/colors
|
2020-03-10 14:07:03 +01:00
|
|
|
|
[13]: customization.md/#additional-stylesheets
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
#### Primary color
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-11-01 14:01:23 +01:00
|
|
|
|
> Default: `indigo`
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Click on a color name to change the primary color of the theme:
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.md-typeset button[data-md-color-primary] {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: opacity 250ms;
|
|
|
|
|
}
|
|
|
|
|
.md-typeset button[data-md-color-primary]:hover {
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
}
|
|
|
|
|
.md-typeset button[data-md-color-primary] > code {
|
|
|
|
|
display: block;
|
|
|
|
|
color: var(--md-primary-bg-color);
|
|
|
|
|
background-color: var(--md-primary-fg-color);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0.2941176471em 0 0 var(--md-primary-fg-color),
|
|
|
|
|
-0.2941176471em 0 0 var(--md-primary-fg-color);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<button data-md-color-primary="red"><code>red</code></button>
|
|
|
|
|
<button data-md-color-primary="pink"><code>pink</code></button>
|
|
|
|
|
<button data-md-color-primary="purple"><code>purple</code></button>
|
|
|
|
|
<button data-md-color-primary="deep-purple"><code>deep purple</code></button>
|
|
|
|
|
<button data-md-color-primary="indigo"><code>indigo</code></button>
|
|
|
|
|
<button data-md-color-primary="blue"><code>blue</code></button>
|
|
|
|
|
<button data-md-color-primary="light-blue"><code>light blue</code></button>
|
|
|
|
|
<button data-md-color-primary="cyan"><code>cyan</code></button>
|
|
|
|
|
<button data-md-color-primary="teal"><code>teal</code></button>
|
|
|
|
|
<button data-md-color-primary="green"><code>green</code></button>
|
|
|
|
|
<button data-md-color-primary="light-green"><code>light green</code></button>
|
|
|
|
|
<button data-md-color-primary="lime"><code>lime</code></button>
|
|
|
|
|
<button data-md-color-primary="yellow"><code>yellow</code></button>
|
|
|
|
|
<button data-md-color-primary="amber"><code>amber</code></button>
|
|
|
|
|
<button data-md-color-primary="orange"><code>orange</code></button>
|
|
|
|
|
<button data-md-color-primary="deep-orange"><code>deep orange</code></button>
|
|
|
|
|
<button data-md-color-primary="brown"><code>brown</code></button>
|
|
|
|
|
<button data-md-color-primary="grey"><code>grey</code></button>
|
|
|
|
|
<button data-md-color-primary="blue-grey"><code>blue grey</code></button>
|
|
|
|
|
<button data-md-color-primary="black"><code>black</code></button>
|
|
|
|
|
<button data-md-color-primary="white"><code>white</code></button>
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
<script>
|
2020-03-09 16:48:52 +01:00
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-primary]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
var attr = "data-md-color-primary"
|
2016-12-29 17:55:08 +01:00
|
|
|
|
button.addEventListener("click", function() {
|
2020-03-09 16:48:52 +01:00
|
|
|
|
document.body.setAttribute(attr, this.getAttribute(attr))
|
2016-12-29 17:55:08 +01:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
#### Accent color
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-11-01 14:01:23 +01:00
|
|
|
|
> Default: `indigo`
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Click on a color name to change the accent color of the theme:
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
.md-typeset button[data-md-color-accent] {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: opacity 250ms;
|
|
|
|
|
}
|
|
|
|
|
.md-typeset button[data-md-color-accent]:hover {
|
|
|
|
|
opacity: 0.75;
|
|
|
|
|
}
|
|
|
|
|
.md-typeset button[data-md-color-accent] > code {
|
|
|
|
|
display: block;
|
|
|
|
|
color: var(--md-accent-fg-color);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<button data-md-color-accent="red"><code>red</code></button>
|
|
|
|
|
<button data-md-color-accent="pink"><code>pink</code></button>
|
|
|
|
|
<button data-md-color-accent="purple"><code>purple</code></button>
|
|
|
|
|
<button data-md-color-accent="deep-purple"><code>deep purple</code></button>
|
|
|
|
|
<button data-md-color-accent="indigo"><code>indigo</code></button>
|
|
|
|
|
<button data-md-color-accent="blue"><code>blue</code></button>
|
|
|
|
|
<button data-md-color-accent="light-blue"><code>light blue</code></button>
|
|
|
|
|
<button data-md-color-accent="cyan"><code>cyan</code></button>
|
|
|
|
|
<button data-md-color-accent="teal"><code>teal</code></button>
|
|
|
|
|
<button data-md-color-accent="green"><code>green</code></button>
|
|
|
|
|
<button data-md-color-accent="light-green"><code>light green</code></button>
|
|
|
|
|
<button data-md-color-accent="lime"><code>lime</code></button>
|
|
|
|
|
<button data-md-color-accent="yellow"><code>yellow</code></button>
|
|
|
|
|
<button data-md-color-accent="amber"><code>amber</code></button>
|
|
|
|
|
<button data-md-color-accent="orange"><code>orange</code></button>
|
|
|
|
|
<button data-md-color-accent="deep-orange"><code>deep orange</code></button>
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
<script>
|
2020-03-09 16:48:52 +01:00
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-accent]")
|
|
|
|
|
buttons.forEach(function(button) {
|
|
|
|
|
var attr = "data-md-color-accent"
|
2016-12-29 17:55:08 +01:00
|
|
|
|
button.addEventListener("click", function() {
|
2020-03-09 16:48:52 +01:00
|
|
|
|
document.body.setAttribute(attr, this.getAttribute(attr))
|
2016-12-29 17:55:08 +01:00
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
### Fonts
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2017-11-01 14:01:23 +01:00
|
|
|
|
> Default: `Roboto` and `Roboto Mono`
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The [Roboto font family][14] is the default font included with the theme,
|
|
|
|
|
specifically the regular sans-serif type for text and the `monospaced` type for
|
|
|
|
|
code. Both fonts are loaded from [Google Fonts][15] and can be changed to any
|
|
|
|
|
valid webfont, like for example the [Ubuntu font family][16]:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2017-10-31 19:42:43 +01:00
|
|
|
|
theme:
|
2016-02-17 18:08:11 +01:00
|
|
|
|
font:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
text: Ubuntu
|
|
|
|
|
code: Ubuntu Mono
|
2016-02-17 18:08:11 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-06-21 10:25:00 +02:00
|
|
|
|
The text font will be loaded in weights 400 and **700**, the `monospaced` font
|
|
|
|
|
in regular weight. If you want to load fonts from other destinations or don't
|
2020-03-09 16:48:52 +01:00
|
|
|
|
want to use Google Fonts for data privacy reasons, just set `font` to `false`:
|
2016-02-17 18:08:11 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2017-10-31 19:42:43 +01:00
|
|
|
|
theme:
|
2017-03-11 18:36:34 +01:00
|
|
|
|
font: false
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[14]: https://fonts.google.com/specimen/Roboto
|
|
|
|
|
[15]: https://fonts.google.com
|
|
|
|
|
[16]: https://fonts.google.com/specimen/Ubuntu
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
### Icons
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
> Default: `material/library` and `fontawesome/brands/git-alt`
|
2017-11-01 14:01:23 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Material for MkDocs uses icons in several places. Currently, the following icons
|
|
|
|
|
can be changed from `mkdocs.yml`: the logo icon, the repository icon and the
|
|
|
|
|
[social link icons][17]. While the social link icons are tied to the respective
|
|
|
|
|
entries, the other icons can be changed by referencing a valid path (without the
|
|
|
|
|
trailing `.svg`) relative to the `.icons` folder which comes with the theme:
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
icon:
|
|
|
|
|
logo: material/library
|
|
|
|
|
repo: fontawesome/brands/git-alt
|
2017-10-31 19:42:43 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
All icons are directly inlined as `*.svg` files, so no further requests will be
|
|
|
|
|
made. Icon sets which are bundled with Material for MkDocs:
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
* [Material Design icons][18]: 3.8k icons
|
|
|
|
|
* [FontAwesome icons][19]: 1.5k icons
|
|
|
|
|
* [GitHub octicons][20]: 200 icons
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[17]: #adding-social-links
|
|
|
|
|
[18]: https://material.io/resources/icons/
|
|
|
|
|
[19]: https://fontawesome.com/icons?d=gallery&m=free
|
|
|
|
|
[20]: https://octicons.github.com/
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
### Logo
|
2018-01-13 17:19:07 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
> Default: icon set through `theme.icon.logo`
|
2018-01-13 17:19:07 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
If you want to replace the icon in the header (screen) and drawer (mobile)
|
|
|
|
|
with your brand's logo, you can place an image file in your `docs` folder
|
|
|
|
|
and use the following option in `mkdocs.yml`:
|
2018-01-13 17:19:07 +01:00
|
|
|
|
|
2018-01-18 21:19:10 +01:00
|
|
|
|
``` yaml
|
2018-01-13 17:19:07 +01:00
|
|
|
|
theme:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
logo: images/logo.svg
|
2017-10-31 19:42:43 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Ideally, the image should be a square with a minimum resolution of 96x96, leave
|
|
|
|
|
some room towards the edges and be composed of high contrast areas on a
|
|
|
|
|
transparent ground, as it will be placed on the colored header and drawer.
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2017-11-01 12:04:22 +01:00
|
|
|
|
### Favicon
|
|
|
|
|
|
2017-11-01 14:01:23 +01:00
|
|
|
|
> Default: `assets/images/favicon.png`
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The default favicon can be changed with:
|
2017-11-01 12:04:22 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
favicon: images/favicon.png
|
2017-11-01 12:04:22 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
## Extras
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2017-03-11 17:24:03 +01:00
|
|
|
|
### Adding a source repository
|
|
|
|
|
|
|
|
|
|
To include a link to the repository of your project within your documentation,
|
|
|
|
|
set the following variables via your project's `mkdocs.yml`:
|
|
|
|
|
|
|
|
|
|
``` yaml
|
2020-03-09 16:48:52 +01:00
|
|
|
|
repo_name: squidfunk/mkdocs-material
|
|
|
|
|
repo_url: https://github.com/squidfunk/mkdocs-material
|
2017-03-11 17:24:03 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-06-21 10:25:00 +02:00
|
|
|
|
The name of the repository will be rendered next to the search bar on big
|
|
|
|
|
screens and as part of the main navigation drawer on smaller screen sizes.
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Additionally, for GitHub and GitLab, the number of stars and forks is shown.
|
|
|
|
|
Note that the repository icon can be explicitly set through `theme.icon.repo`.
|
2017-08-02 14:09:13 +02:00
|
|
|
|
|
2017-10-13 15:32:28 +02:00
|
|
|
|
!!! question "Why is there an edit button at the top of every article?"
|
2017-03-11 17:24:03 +01:00
|
|
|
|
|
|
|
|
|
If the `repo_url` is set to a GitHub or BitBucket repository, and the
|
2017-03-11 18:36:34 +01:00
|
|
|
|
`repo_name` is set to *GitHub* or *BitBucket* (implied by default), an
|
2017-03-11 17:24:03 +01:00
|
|
|
|
edit button will appear at the top of every article. This is the automatic
|
2020-03-09 16:48:52 +01:00
|
|
|
|
behavior that MkDocs implements. See the [MkDocs documentation][21] on more
|
2017-03-11 17:24:03 +01:00
|
|
|
|
guidance regarding the `edit_uri` attribute, which defines whether the edit
|
2017-04-28 17:04:00 +02:00
|
|
|
|
button is shown or not.
|
2017-03-11 17:24:03 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[21]: https://www.mkdocs.org/user-guide/configuration/#edit_uri
|
2017-09-01 15:23:44 +02:00
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
### Adding social links
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2017-06-21 10:25:00 +02:00
|
|
|
|
Social accounts can be linked in the footer of the documentation using the
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[icons][22] which are bundled with the theme. Note that each `icon` must point
|
|
|
|
|
to a valid path (without the trailing `.svg`) relative to the `.icons` folder
|
|
|
|
|
which comes with the theme:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
2016-12-29 17:55:08 +01:00
|
|
|
|
social:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
- icon: fontawesome/brands/github-alt
|
|
|
|
|
link: https://github.com/squidfunk
|
|
|
|
|
- icon: fontawesome/brands/twitter
|
|
|
|
|
link: https://twitter.com/squidfunk
|
|
|
|
|
- icon: fontawesome/brands/linkedin
|
2020-03-09 22:29:01 +01:00
|
|
|
|
link: https://linkedin.com/in/squidfunk
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[22]: #icons
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2018-11-17 17:57:47 +01:00
|
|
|
|
### Adding a Web App Manifest
|
2017-10-31 19:42:43 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
A [Web App Manifest][23] is a simple JSON file that tells the browser about your
|
2018-11-17 17:57:47 +01:00
|
|
|
|
web application and how it should behave when installed on the user's mobile
|
2020-03-09 19:03:48 +01:00
|
|
|
|
device or desktop. You can specify such a manifest in `mkdocs.yml`:
|
2018-11-17 17:51:35 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
``` yaml
|
2018-11-17 17:51:35 +01:00
|
|
|
|
extra:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
manifest: manifest.webmanifest
|
2018-11-17 17:51:35 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[23]: https://developers.google.com/web/fundamentals/web-app-manifest/
|
2018-11-17 17:57:47 +01:00
|
|
|
|
|
2017-10-31 19:42:43 +01:00
|
|
|
|
## Integrations
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-11-05 14:26:44 +01:00
|
|
|
|
### Google Analytics
|
2016-03-12 13:21:06 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
MkDocs makes it easy to integrate site tracking with Google Analytics. Besides
|
|
|
|
|
basic page views, site search is tracked to better understand how people use
|
|
|
|
|
your documentation. Google Analytics can be activated with:
|
2016-03-12 13:21:06 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
google_analytics:
|
2020-03-09 22:29:01 +01:00
|
|
|
|
- UA-XXXXXXXX-X
|
|
|
|
|
- auto
|
2016-03-12 13:21:06 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-11-05 14:26:44 +01:00
|
|
|
|
### Disqus
|
2017-02-24 22:53:12 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Material for MkDocs is integrated with [Disqus][24], so if you want to add a
|
2017-02-24 22:53:12 +01:00
|
|
|
|
comments section to your documentation set the shortname of your Disqus project
|
2020-03-09 19:03:48 +01:00
|
|
|
|
in `mkdocs.yml`:
|
2017-02-24 22:53:12 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
2020-03-09 16:48:52 +01:00
|
|
|
|
disqus: your-shortname
|
2017-02-24 22:53:12 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
The comments section is inserted on *every page, except the index page*. The
|
|
|
|
|
necessary JavaScript is automatically included.
|
2017-02-24 22:53:12 +01:00
|
|
|
|
|
2017-05-31 15:31:17 +02:00
|
|
|
|
!!! warning "Requirements"
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Note that `site_url` must be set in `mkdocs.yml` for the Disqus integration
|
|
|
|
|
to load properly.
|
2017-05-20 21:19:30 +02:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
Disqus can also be enabled or disabled for specific pages using [Metadata][25].
|
2018-02-11 19:18:33 +01:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[24]: https://disqus.com
|
|
|
|
|
[25]: extensions/metadata.md#disqus
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
## Extensions
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
[Markdown][3] comes with several very useful extensions, the following of which
|
2020-03-09 19:03:48 +01:00
|
|
|
|
are not enabled by default but highly recommended, so enabling them should
|
|
|
|
|
definitely be a good idea:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- admonition
|
2017-10-18 21:38:33 +02:00
|
|
|
|
- codehilite:
|
2017-10-16 19:13:05 +02:00
|
|
|
|
guess_lang: false
|
|
|
|
|
- toc:
|
|
|
|
|
permalink: true
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2020-03-09 19:03:48 +01:00
|
|
|
|
See the following list of extensions supported by Material for MkDocs including
|
|
|
|
|
some more information on configuration and usage:
|
2016-02-21 18:30:49 +01:00
|
|
|
|
|
2018-11-17 17:57:47 +01:00
|
|
|
|
* [Admonition][26]
|
|
|
|
|
* [Codehilite][27]
|
|
|
|
|
* [Footnotes][28]
|
|
|
|
|
* [Metadata][29]
|
|
|
|
|
* [Permalinks][30]
|
|
|
|
|
* [PyMdown Extensions][31]
|
|
|
|
|
|
|
|
|
|
[26]: extensions/admonition.md
|
|
|
|
|
[27]: extensions/codehilite.md
|
|
|
|
|
[28]: extensions/footnotes.md
|
|
|
|
|
[29]: extensions/metadata.md
|
|
|
|
|
[30]: extensions/permalinks.md
|
|
|
|
|
[31]: extensions/pymdown.md
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2019-06-15 15:47:53 +02:00
|
|
|
|
## Plugins
|
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
MkDocs' plugin architecture makes it possible to add pre- or post-processing
|
|
|
|
|
steps that sit between the theme and your documentation. For more information,
|
|
|
|
|
see the following list of plugins tested and supported by Material for MkDocs
|
|
|
|
|
including more information regarding installation and usage:
|
2019-06-15 15:47:53 +02:00
|
|
|
|
|
2020-03-09 19:03:48 +01:00
|
|
|
|
* [Search][32] (enabled by default)
|
|
|
|
|
* [Minification][33]
|
|
|
|
|
* [Revision date][34]
|
2019-06-15 15:47:53 +02:00
|
|
|
|
|
2020-03-09 16:48:52 +01:00
|
|
|
|
For further reference, the MkDocs wiki contains a list of all
|
|
|
|
|
[available plugins][35].
|
2019-06-15 15:47:53 +02:00
|
|
|
|
|
2020-03-09 19:03:48 +01:00
|
|
|
|
[32]: plugins/search.md
|
|
|
|
|
[33]: plugins/minification.md
|
|
|
|
|
[34]: plugins/revision-date.md
|
2019-12-18 17:13:17 +01:00
|
|
|
|
[35]: https://github.com/mkdocs/mkdocs/wiki/MkDocs-Plugins
|