2016-02-09 21:59:37 +01:00
|
|
|
|
# Getting started
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
### Installing MkDocs
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
Before installing [MkDocs][2], you need to make sure you have Python and `pip`
|
2016-12-29 17:55:08 +01:00
|
|
|
|
– the Python package manager – up and running. You can verify if you're already
|
2016-02-24 17:31:01 +01:00
|
|
|
|
good to go with the following commands:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
python --version
|
2016-12-29 17:55:08 +01:00
|
|
|
|
# Python 2.7.13
|
2016-02-09 21:59:37 +01:00
|
|
|
|
pip --version
|
2016-12-29 17:55:08 +01:00
|
|
|
|
# pip 9.0.1
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Installing and verifying MkDocs is as simple as:
|
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
pip install mkdocs && mkdocs --version
|
2016-12-29 17:55:08 +01:00
|
|
|
|
# mkdocs, version 0.16.0
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
!!! warning "MkDocs for Material requirements"
|
|
|
|
|
|
|
|
|
|
Material requires MkDocs >= 0.16.
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
Furthermore, it is highly recommended to install [Pygments][3] and the
|
|
|
|
|
[PyMdown Extensions][4] to get the most out of the Material theme:
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
pip install pygments
|
|
|
|
|
pip install pymdown-extensions
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
[1]: https://hub.docker.com/r/squidfunk/mkdocs-material/
|
|
|
|
|
[2]: http://www.mkdocs.org
|
|
|
|
|
[3]: http://pygments.org
|
|
|
|
|
[4]: http://facelessuser.github.io/pymdown-extensions/
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2016-02-09 21:59:37 +01:00
|
|
|
|
### Installing Material
|
|
|
|
|
|
2017-01-14 13:43:19 +01:00
|
|
|
|
#### using pip
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
Material can be installed with `pip`:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
pip install mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
!!! warning "Installation on macOS"
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
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
|
|
|
|
|
the adequate permissions. There are two possible solutions to this:
|
2016-12-29 17:55:08 +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
|
2017-01-12 20:15:30 +01:00
|
|
|
|
should eliminate a lot of problems you may be having with `pip`.
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-01-14 13:43:19 +01:00
|
|
|
|
#### using choco
|
|
|
|
|
|
|
|
|
|
If you're on Windows you can use [Chocolatey][5] to install [Material][6]:
|
|
|
|
|
|
|
|
|
|
``` dos
|
|
|
|
|
choco install mkdocs-material
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
This will also install all required dependencies like [Python][7] and
|
|
|
|
|
[MkDocs][8].
|
|
|
|
|
|
|
|
|
|
[5]: https://chocolatey.org
|
|
|
|
|
[6]: https://chocolatey.org/packages/mkdocs-material
|
2017-01-14 13:44:23 +01:00
|
|
|
|
[7]: https://chocolatey.org/packages/python
|
|
|
|
|
[8]: https://chocolatey.org/packages/mkdocs
|
2017-01-14 13:43:19 +01:00
|
|
|
|
|
|
|
|
|
#### cloning from GitHub
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
Material can also be used without a system-wide installation by cloning the
|
2016-12-29 17:55:08 +01:00
|
|
|
|
repository into a subfolder of your project's root directory:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` sh
|
2016-12-29 17:55:08 +01:00
|
|
|
|
git clone https://github.com/squidfunk/mkdocs-material.git
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-01-07 20:07:41 +01:00
|
|
|
|
This is especially useful if you want to extend the theme and override some
|
|
|
|
|
parts of the theme. The theme will reside in the folder
|
|
|
|
|
`mkdocs-material/material`.
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
|
|
In order to enable the Material theme just add one of the following lines to
|
|
|
|
|
your `mkdocs.yml`. If you installed Material using pip:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
theme: 'material'
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
If you cloned Material from GitHub:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
2016-12-29 17:55:08 +01:00
|
|
|
|
theme_dir: 'mkdocs-material/material'
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
MkDocs includes a development server, so you can view your changes as you go.
|
|
|
|
|
The development server can be started with the following command:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
|
mkdocs serve
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
Now you can point your browser to [localhost:8000][9] and the Material theme
|
2017-01-12 20:15:30 +01:00
|
|
|
|
should be visible. From here on, you can start writing your documentation, or
|
|
|
|
|
read on and customize the theme through some options.
|
2017-01-07 20:07:41 +01:00
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[9]: http://localhost:8000
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
## Options
|
|
|
|
|
|
|
|
|
|
The Material theme adds some extra variables for configuration via your
|
|
|
|
|
project's `mkdocs.yml`. See the following section for all available options.
|
|
|
|
|
|
2016-02-24 17:31:01 +01:00
|
|
|
|
### Changing the color palette
|
|
|
|
|
|
|
|
|
|
Material defines a default hue for every primary and accent color on Google's
|
2017-01-14 12:42:53 +01:00
|
|
|
|
Material Design [color palette][10]. This makes it very easy to change the
|
2016-12-29 17:55:08 +01:00
|
|
|
|
overall look of the theme. Just set the primary and accent colors using the
|
|
|
|
|
following variables in your `mkdocs.yml`:
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
|
|
|
|
palette:
|
|
|
|
|
primary: 'indigo'
|
|
|
|
|
accent: 'light blue'
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
Color names are case-insensitive, but must match the names of the Material
|
|
|
|
|
Design color palette. Valid values are: `red`, `pink`, `purple`, `deep purple`,
|
|
|
|
|
`indigo`, `blue`, `light blue`, `cyan`, `teal`, `green`, `light green`, `lime`,
|
|
|
|
|
`yellow`, `amber`, `orange`, `deep orange`, `brown`, `grey` and `blue grey`.
|
|
|
|
|
The last three colors can only be used as a primary color.
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
If the color is set via this configuration, an additional CSS file that
|
|
|
|
|
defines the color palette is included. If you want to keep things lean, clone
|
2017-01-12 20:15:30 +01:00
|
|
|
|
the repository and recompile the theme with your custom colors set. See the
|
2017-01-14 12:42:53 +01:00
|
|
|
|
guide on [customization][11] for more information.
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[10]: http://www.materialui.co/colors
|
|
|
|
|
[11]: customization.md
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
#### Primary colors
|
|
|
|
|
|
|
|
|
|
Click on a tile to change the primary color of the theme:
|
|
|
|
|
|
|
|
|
|
<button data-md-color-primary="red">Red</button>
|
|
|
|
|
<button data-md-color-primary="pink">Pink</button>
|
|
|
|
|
<button data-md-color-primary="purple">Purple</button>
|
|
|
|
|
<button data-md-color-primary="deep-purple">Deep Purple</button>
|
|
|
|
|
<button data-md-color-primary="indigo">Indigo</button>
|
|
|
|
|
<button data-md-color-primary="blue">Blue</button>
|
|
|
|
|
<button data-md-color-primary="light-blue">Light Blue</button>
|
|
|
|
|
<button data-md-color-primary="cyan">Cyan</button>
|
|
|
|
|
<button data-md-color-primary="teal">Teal</button>
|
|
|
|
|
<button data-md-color-primary="green">Green</button>
|
|
|
|
|
<button data-md-color-primary="light-green">Light Green</button>
|
|
|
|
|
<button data-md-color-primary="lime">Lime</button>
|
|
|
|
|
<button data-md-color-primary="yellow">Yellow</button>
|
|
|
|
|
<button data-md-color-primary="amber">Amber</button>
|
|
|
|
|
<button data-md-color-primary="orange">Orange</button>
|
|
|
|
|
<button data-md-color-primary="deep-orange">Deep Orange</button>
|
|
|
|
|
<button data-md-color-primary="brown">Brown</button>
|
|
|
|
|
<button data-md-color-primary="grey">Grey</button>
|
|
|
|
|
<button data-md-color-primary="blue-grey">Blue Grey</button>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-primary]");
|
|
|
|
|
Array.prototype.forEach.call(buttons, function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
|
|
|
|
document.body.dataset.mdColorPrimary = this.dataset.mdColorPrimary;
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
#### Accent colors
|
|
|
|
|
|
|
|
|
|
Click on a tile to change the accent color of the theme:
|
|
|
|
|
|
|
|
|
|
<button data-md-color-accent="red">Red</button>
|
|
|
|
|
<button data-md-color-accent="pink">Pink</button>
|
|
|
|
|
<button data-md-color-accent="purple">Purple</button>
|
|
|
|
|
<button data-md-color-accent="deep-purple">Deep Purple</button>
|
|
|
|
|
<button data-md-color-accent="indigo">Indigo</button>
|
|
|
|
|
<button data-md-color-accent="blue">Blue</button>
|
|
|
|
|
<button data-md-color-accent="light-blue">Light Blue</button>
|
|
|
|
|
<button data-md-color-accent="cyan">Cyan</button>
|
|
|
|
|
<button data-md-color-accent="teal">Teal</button>
|
|
|
|
|
<button data-md-color-accent="green">Green</button>
|
|
|
|
|
<button data-md-color-accent="light-green">Light Green</button>
|
|
|
|
|
<button data-md-color-accent="lime">Lime</button>
|
|
|
|
|
<button data-md-color-accent="yellow">Yellow</button>
|
|
|
|
|
<button data-md-color-accent="amber">Amber</button>
|
|
|
|
|
<button data-md-color-accent="orange">Orange</button>
|
|
|
|
|
<button data-md-color-accent="deep-orange">Deep Orange</button>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
var buttons = document.querySelectorAll("button[data-md-color-accent]");
|
|
|
|
|
Array.prototype.forEach.call(buttons, function(button) {
|
|
|
|
|
button.addEventListener("click", function() {
|
|
|
|
|
document.body.dataset.mdColorAccent = this.dataset.mdColorAccent;
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
</script>
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
2016-02-17 18:08:11 +01:00
|
|
|
|
### Changing the font family
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
Material uses the [Roboto font family][12] by default, specifically the regular
|
2017-01-07 20:07:41 +01:00
|
|
|
|
sans-serif type for text and the `monospaced` type for code. Both fonts are
|
2017-01-14 12:42:53 +01:00
|
|
|
|
loaded from [Google Fonts][13] and can easily be changed to other fonts, like
|
|
|
|
|
for example the [Ubuntu font family][14]:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
2016-02-17 18:08:11 +01:00
|
|
|
|
font:
|
2016-12-29 17:55:08 +01:00
|
|
|
|
text: 'Ubuntu'
|
|
|
|
|
code: 'Ubuntu Mono'
|
2016-02-17 18:08:11 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-01-07 20:07:41 +01:00
|
|
|
|
The text font will be loaded in font-weights 400 and **700**, the `monospaced`
|
2016-02-24 17:31:01 +01:00
|
|
|
|
font in regular weight. If you want to load fonts from other destinations or
|
2016-12-29 17:55:08 +01:00
|
|
|
|
don't want to use the Google Fonts loading magic, just set `font` to `'none'`:
|
2016-02-17 18:08:11 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
|
|
|
|
font: 'none'
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[12]: https://fonts.google.com/specimen/Roboto
|
|
|
|
|
[13]: https://fonts.google.com/
|
|
|
|
|
[14]: https://fonts.google.com/specimen/Ubuntu
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
|
|
|
|
### Adding a logo
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
Material makes it easy to add your logo. Your logo should have rectangular
|
|
|
|
|
shape with a minimum resolution of 128x128, 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 bar and drawer. Simply create the folder
|
|
|
|
|
`docs/images`, add your logo and embed it with:
|
2016-02-24 17:31:01 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
2016-12-29 17:55:08 +01:00
|
|
|
|
logo: 'images/logo.svg'
|
2016-02-24 17:31:01 +01:00
|
|
|
|
```
|
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
### Adding social links
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
If you want to link your social accounts, the Material theme provides an easy
|
|
|
|
|
way for doing this in the footer of the documentation using the automatically
|
2017-01-14 12:42:53 +01:00
|
|
|
|
included [FontAwesome][15] webfont. The syntax is simple – the `type` must
|
2017-01-12 20:15:30 +01:00
|
|
|
|
denote the name of the social service, e.g. `github`, `twitter` or `linkedin`
|
|
|
|
|
and the `link` must contain the URL you want to link to:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
extra:
|
2016-12-29 17:55:08 +01:00
|
|
|
|
social:
|
|
|
|
|
- type: 'github'
|
|
|
|
|
link: 'https://github.com/squidfunk'
|
|
|
|
|
- type: 'twitter'
|
|
|
|
|
link: 'https://twitter.com/squidfunk'
|
|
|
|
|
- type: 'linkedin'
|
|
|
|
|
link: 'https://de.linkedin.com/in/martin-donath-20a95039'
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2017-01-12 20:15:30 +01:00
|
|
|
|
The links are generated in order and the `type` of the links must match the
|
|
|
|
|
name of the FontAwesome glyph. The `fa` is automatically added, so `github`
|
|
|
|
|
will result in `fa fa-github`.
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[15]: http://fontawesome.io/icons/
|
2016-12-29 17:55:08 +01:00
|
|
|
|
|
2016-03-12 13:21:06 +01:00
|
|
|
|
### Google Analytics integration
|
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
MkDocs makes it easy to integrate site tracking with Google Analytics.
|
|
|
|
|
Besides basic tracking, clicks on all outgoing links can be tracked as well as
|
|
|
|
|
how site search is used. Tracking can be activated in your project's
|
|
|
|
|
`mkdocs.yml`:
|
2016-03-12 13:21:06 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
google_analytics:
|
|
|
|
|
- 'UA-XXXXXXXX-X'
|
|
|
|
|
- 'auto'
|
|
|
|
|
```
|
|
|
|
|
|
2017-01-07 18:54:03 +01:00
|
|
|
|
### Localization <small>L10N</small>
|
|
|
|
|
|
2017-01-08 23:21:45 +01:00
|
|
|
|
In order to localize the labels (e.g. *Previous* and *Next* in the footer),
|
2017-01-13 00:31:37 +01:00
|
|
|
|
you can override the file `partials/language.html` to provide your own
|
|
|
|
|
translations inside the macro `t`:
|
2017-01-07 18:54:03 +01:00
|
|
|
|
|
|
|
|
|
``` jinja
|
|
|
|
|
{% macro t(key) %}{{ {
|
|
|
|
|
"edit.link.title": "Edit this page",
|
|
|
|
|
"footer.previous": "Previous",
|
|
|
|
|
"footer.next": "Next",
|
|
|
|
|
"search.placeholder": "Search",
|
|
|
|
|
"source.link.title": "Go to repository",
|
|
|
|
|
"toc.title": "Table of contents"
|
|
|
|
|
}[key] }}{% endmacro %}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Just copy the file from the original theme and make your adjustments. See the
|
2017-01-14 12:42:53 +01:00
|
|
|
|
section on [overriding partials][16] in the customization guide.
|
2017-01-07 20:07:41 +01:00
|
|
|
|
|
2017-01-08 23:21:45 +01:00
|
|
|
|
!!! warning "Migrating from Material 0.2.x"
|
|
|
|
|
|
2017-01-09 23:55:04 +01:00
|
|
|
|
In 0.2.x localization was done within the `extra` configuration of your
|
2017-01-08 23:21:45 +01:00
|
|
|
|
`mkdocs.yml`. With 1.0.0 this is no longer possible as the configuration
|
|
|
|
|
will be ignored.
|
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[16]: customization.md#overriding-partials
|
2017-01-07 18:54:03 +01:00
|
|
|
|
|
2016-02-09 21:59:37 +01:00
|
|
|
|
### More advanced customization
|
|
|
|
|
|
2016-02-24 17:31:01 +01:00
|
|
|
|
If you want to change the general appearance of the Material theme, see
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[this article][17] for more information on advanced customization.
|
2017-01-07 20:07:41 +01:00
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
[17]: customization.md
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
## Extensions
|
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
MkDocs supports several [Markdown extensions][18]. The following extensions
|
2017-01-07 20:07:41 +01:00
|
|
|
|
are not enabled by default (see the link for which are enabled by default)
|
|
|
|
|
but highly recommended, so they should be switched on at all times:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- admonition
|
2016-12-29 17:55:08 +01:00
|
|
|
|
- codehilite(guess_lang=false)
|
|
|
|
|
- toc(permalink=true)
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|
|
|
|
|
|
2016-12-29 17:55:08 +01:00
|
|
|
|
For more information, see the following list of extensions supported by the
|
|
|
|
|
Material theme including more information regarding installation and usage:
|
2016-02-21 18:30:49 +01:00
|
|
|
|
|
2017-01-14 12:42:53 +01:00
|
|
|
|
* [Admonition][19]
|
|
|
|
|
* [Codehilite][20]
|
|
|
|
|
* [Permalinks][21]
|
|
|
|
|
* [Footnotes][22]
|
|
|
|
|
* [PyMdown Extensions][23]
|
|
|
|
|
|
|
|
|
|
[18]: http://www.mkdocs.org/user-guide/writing-your-docs/#markdown-extensions
|
|
|
|
|
[19]: extensions/admonition.md
|
|
|
|
|
[20]: extensions/codehilite.md
|
|
|
|
|
[21]: extensions/permalinks.md
|
|
|
|
|
[22]: extensions/footnotes.md
|
|
|
|
|
[23]: extensions/pymdown.md
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
## Full example
|
|
|
|
|
|
2016-08-07 18:01:56 +02:00
|
|
|
|
Below is a full example configuration for a `mkdocs.yml`:
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
|
# Project information
|
|
|
|
|
site_name: 'My Project'
|
|
|
|
|
site_description: 'A short description of my project'
|
|
|
|
|
site_author: 'John Doe'
|
2016-02-16 17:04:03 +01:00
|
|
|
|
site_url: 'https://my-github-handle.github.io/my-project'
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
# Repository
|
|
|
|
|
repo_name: 'GitHub'
|
|
|
|
|
repo_url: 'https://github.com/my-github-handle/my-project'
|
|
|
|
|
|
|
|
|
|
# Copyright
|
2016-12-29 17:55:08 +01:00
|
|
|
|
copyright: 'Copyright © 2016 John Doe'
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
|
|
|
|
# Documentation and theme
|
|
|
|
|
theme: 'material'
|
|
|
|
|
|
|
|
|
|
# Options
|
|
|
|
|
extra:
|
2016-12-29 17:55:08 +01:00
|
|
|
|
logo: 'images/logo.svg'
|
2016-02-24 17:31:01 +01:00
|
|
|
|
palette:
|
|
|
|
|
primary: 'indigo'
|
2016-12-29 17:55:08 +01:00
|
|
|
|
accent: 'indigo'
|
2016-02-17 18:08:11 +01:00
|
|
|
|
font:
|
|
|
|
|
text: 'Roboto'
|
|
|
|
|
code: 'Roboto Mono'
|
2016-12-29 17:55:08 +01:00
|
|
|
|
social:
|
|
|
|
|
- type: 'github'
|
|
|
|
|
link: 'https://github.com/squidfunk'
|
|
|
|
|
- type: 'twitter'
|
|
|
|
|
link: 'https://twitter.com/squidfunk'
|
|
|
|
|
- type: 'linkedin'
|
|
|
|
|
link: 'https://de.linkedin.com/in/martin-donath-20a95039'
|
2016-02-09 21:59:37 +01:00
|
|
|
|
|
2016-03-12 13:21:06 +01:00
|
|
|
|
# Google Analytics
|
|
|
|
|
google_analytics:
|
|
|
|
|
- 'UA-XXXXXXXX-X'
|
|
|
|
|
- 'auto'
|
|
|
|
|
|
2016-02-09 21:59:37 +01:00
|
|
|
|
# Extensions
|
|
|
|
|
markdown_extensions:
|
|
|
|
|
- admonition
|
2016-12-29 17:55:08 +01:00
|
|
|
|
- codehilite(guess_lang=false)
|
|
|
|
|
- footnotes
|
|
|
|
|
- meta
|
|
|
|
|
- toc(permalink=true)
|
2016-02-09 21:59:37 +01:00
|
|
|
|
```
|