2020-02-10 12:34:58 +01:00
|
|
|
|
# Copyright (c) 2016-2020 Martin Donath <martin.donath@squidfunk.com>
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
# of this software and associated documentation files (the "Software"), to
|
|
|
|
|
# deal in the Software without restriction, including without limitation the
|
|
|
|
|
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
|
# sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
|
# IN THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
# Project information
|
2016-12-28 16:20:52 +01:00
|
|
|
|
site_name: Material for MkDocs
|
2020-03-29 15:28:00 +02:00
|
|
|
|
site_url: https://squidfunk.github.io/mkdocs-material/
|
2016-02-04 15:03:20 +01:00
|
|
|
|
site_author: Martin Donath
|
2020-03-26 15:23:22 +01:00
|
|
|
|
site_description: >-
|
|
|
|
|
Create a branded static site from a set of Markdown files to host the
|
|
|
|
|
documentation of your Open Source or commercial project – customizable,
|
|
|
|
|
searchable, mobile-friendly, 40+ languages
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
|
|
# Repository
|
2016-09-23 11:56:25 +02:00
|
|
|
|
repo_name: squidfunk/mkdocs-material
|
2016-02-09 12:58:55 +01:00
|
|
|
|
repo_url: https://github.com/squidfunk/mkdocs-material
|
2017-10-31 21:00:46 +01:00
|
|
|
|
edit_uri: ""
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
|
|
# Copyright
|
2020-03-10 11:55:25 +01:00
|
|
|
|
copyright: Copyright © 2016 - 2020 Martin Donath
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
2017-11-03 14:25:37 +01:00
|
|
|
|
# Configuration
|
2017-10-31 17:03:42 +01:00
|
|
|
|
theme:
|
|
|
|
|
name: null
|
|
|
|
|
custom_dir: material
|
|
|
|
|
|
2017-11-07 23:56:08 +01:00
|
|
|
|
# 404 page
|
|
|
|
|
static_templates:
|
|
|
|
|
- 404.html
|
|
|
|
|
|
2017-10-31 20:25:30 +01:00
|
|
|
|
# Don't include MkDocs' JavaScript
|
|
|
|
|
include_search_page: false
|
|
|
|
|
search_index_only: true
|
|
|
|
|
|
2017-10-31 19:06:19 +01:00
|
|
|
|
# Default values, taken from mkdocs_theme.yml
|
2017-10-31 18:51:54 +01:00
|
|
|
|
language: en
|
2020-03-05 16:44:55 +01:00
|
|
|
|
features:
|
|
|
|
|
- tabs
|
2020-07-24 12:10:51 +02:00
|
|
|
|
#- instant
|
2017-10-31 18:51:54 +01:00
|
|
|
|
palette:
|
2020-05-18 21:37:57 +02:00
|
|
|
|
scheme: default
|
2017-11-03 14:25:37 +01:00
|
|
|
|
primary: indigo
|
|
|
|
|
accent: indigo
|
2017-10-31 18:21:09 +01:00
|
|
|
|
font:
|
|
|
|
|
text: Roboto
|
|
|
|
|
code: Roboto Mono
|
2020-07-23 10:23:32 +02:00
|
|
|
|
favicon: assets/favicon.png
|
2020-02-27 11:37:02 +01:00
|
|
|
|
icon:
|
2020-03-18 12:46:50 +01:00
|
|
|
|
logo: logo
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
2019-06-15 15:16:14 +02:00
|
|
|
|
# Plugins
|
|
|
|
|
plugins:
|
2020-01-08 18:17:19 +01:00
|
|
|
|
- search
|
2020-07-22 13:59:05 +02:00
|
|
|
|
- redirects:
|
|
|
|
|
redirect_maps:
|
|
|
|
|
extensions/admonition.md: reference/admonitions.md
|
|
|
|
|
extensions/codehilite.md: reference/code-blocks.md
|
|
|
|
|
extensions/footnotes.md: reference/footnotes.md
|
|
|
|
|
extensions/metadata.md: reference/meta-tags.md
|
2020-07-22 14:05:07 +02:00
|
|
|
|
extensions/permalinks.md: setup/setting-up-navigation.md #permalink
|
2020-07-27 09:22:53 +02:00
|
|
|
|
extensions/pymdown.md: reference/admonitions.md
|
2020-07-22 13:59:05 +02:00
|
|
|
|
plugins/search.md: setup/setting-up-site-search.md
|
|
|
|
|
# plugins/minification.md:
|
|
|
|
|
# plugins/revision-date.md:
|
|
|
|
|
# plugins/awesome-pages.md:
|
2020-07-22 14:05:07 +02:00
|
|
|
|
releases/4.md: upgrading.md #upgrading-from-4x-to-5x
|
|
|
|
|
releases/5.md: upgrading.md #upgrading-from-3x-to-4x
|
2020-07-22 13:59:05 +02:00
|
|
|
|
releases/changelog.md: changelog.md
|
2020-07-27 09:40:57 +02:00
|
|
|
|
sponsorship.md: insiders.md
|
2019-12-22 17:42:58 +01:00
|
|
|
|
- minify:
|
|
|
|
|
minify_html: true
|
2019-06-15 15:16:14 +02:00
|
|
|
|
|
2017-11-03 14:25:37 +01:00
|
|
|
|
# Customization
|
2016-02-04 15:03:20 +01:00
|
|
|
|
extra:
|
2016-12-26 18:26:34 +01:00
|
|
|
|
social:
|
2020-03-09 21:14:47 +01:00
|
|
|
|
- icon: fontawesome/brands/github
|
2016-12-26 18:26:34 +01:00
|
|
|
|
link: https://github.com/squidfunk
|
2020-03-09 21:14:47 +01:00
|
|
|
|
- icon: fontawesome/brands/gitter
|
|
|
|
|
link: https://gitter.im/squidfunk/mkdocs-material
|
|
|
|
|
- icon: fontawesome/brands/docker
|
|
|
|
|
link: https://hub.docker.com/r/squidfunk/mkdocs-material/
|
2020-02-27 11:37:02 +01:00
|
|
|
|
- icon: fontawesome/brands/twitter
|
2016-12-26 18:26:34 +01:00
|
|
|
|
link: https://twitter.com/squidfunk
|
2020-02-27 11:37:02 +01:00
|
|
|
|
- icon: fontawesome/brands/linkedin
|
2020-03-09 21:14:47 +01:00
|
|
|
|
link: https://linkedin.com/in/squidfunk/
|
2020-02-27 11:37:02 +01:00
|
|
|
|
- icon: fontawesome/brands/instagram
|
2020-02-02 16:19:01 +01:00
|
|
|
|
link: https://instagram.com/squidfunk
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
|
|
# Extensions
|
|
|
|
|
markdown_extensions:
|
2016-09-23 11:56:25 +02:00
|
|
|
|
- markdown.extensions.admonition
|
2020-03-26 10:25:13 +01:00
|
|
|
|
- markdown.extensions.attr_list
|
2017-02-19 16:11:01 +01:00
|
|
|
|
- markdown.extensions.def_list
|
2016-09-23 11:56:25 +02:00
|
|
|
|
- markdown.extensions.footnotes
|
|
|
|
|
- markdown.extensions.meta
|
2017-10-20 09:37:18 +02:00
|
|
|
|
- markdown.extensions.toc:
|
|
|
|
|
permalink: true
|
2020-07-24 16:11:42 +02:00
|
|
|
|
- pymdownx.arithmatex:
|
|
|
|
|
generic: true
|
2017-10-20 09:37:18 +02:00
|
|
|
|
- pymdownx.betterem:
|
|
|
|
|
smart_enable: all
|
2016-11-02 19:21:14 +01:00
|
|
|
|
- pymdownx.caret
|
|
|
|
|
- pymdownx.critic
|
2017-08-29 08:17:26 +02:00
|
|
|
|
- pymdownx.details
|
2017-01-09 22:25:15 +01:00
|
|
|
|
- pymdownx.emoji:
|
2020-04-12 19:58:22 +02:00
|
|
|
|
emoji_index: !!python/name:materialx.emoji.twemoji
|
|
|
|
|
emoji_generator: !!python/name:materialx.emoji.to_svg
|
2020-07-19 22:23:26 +02:00
|
|
|
|
- pymdownx.highlight
|
2016-11-02 19:21:14 +01:00
|
|
|
|
- pymdownx.inlinehilite
|
2018-01-11 23:17:33 +01:00
|
|
|
|
- pymdownx.keys
|
2019-01-29 11:07:18 +01:00
|
|
|
|
- pymdownx.magiclink:
|
|
|
|
|
repo_url_shorthand: true
|
|
|
|
|
user: squidfunk
|
|
|
|
|
repo: mkdocs-material
|
2016-11-02 19:21:14 +01:00
|
|
|
|
- pymdownx.mark
|
|
|
|
|
- pymdownx.smartsymbols
|
2020-03-09 23:33:46 +01:00
|
|
|
|
- pymdownx.snippets:
|
|
|
|
|
check_paths: true
|
2016-10-23 10:21:37 +02:00
|
|
|
|
- pymdownx.superfences
|
2020-02-14 08:16:04 +01:00
|
|
|
|
- pymdownx.tabbed
|
2017-10-20 09:37:18 +02:00
|
|
|
|
- pymdownx.tasklist:
|
|
|
|
|
custom_checkbox: true
|
2016-11-02 19:21:14 +01:00
|
|
|
|
- pymdownx.tilde
|
|
|
|
|
|
2016-02-04 15:03:20 +01:00
|
|
|
|
# Page tree
|
2018-08-04 19:53:13 +02:00
|
|
|
|
nav:
|
2020-03-09 19:03:48 +01:00
|
|
|
|
- Home: index.md
|
2020-05-31 15:40:41 +02:00
|
|
|
|
- Getting started:
|
|
|
|
|
- Installation: getting-started.md
|
2020-07-17 13:08:27 +02:00
|
|
|
|
- Creating your site: creating-your-site.md
|
|
|
|
|
- Publishing your site: publishing-your-site.md
|
|
|
|
|
- Customization: customization.md
|
2020-07-22 18:30:00 +02:00
|
|
|
|
- Troubleshooting: troubleshooting.md
|
2020-07-17 13:08:27 +02:00
|
|
|
|
- Data privacy: data-privacy.md
|
2020-07-27 09:40:57 +02:00
|
|
|
|
- Insiders: insiders.md
|
2020-07-22 13:37:14 +02:00
|
|
|
|
- License: license.md
|
2020-07-21 16:01:22 +02:00
|
|
|
|
- Setup:
|
|
|
|
|
- Changing the colors: setup/changing-the-colors.md
|
|
|
|
|
- Changing the fonts: setup/changing-the-fonts.md
|
|
|
|
|
- Changing the language: setup/changing-the-language.md
|
|
|
|
|
- Changing the logo and icons: setup/changing-the-logo-and-icons.md
|
|
|
|
|
- Setting up navigation: setup/setting-up-navigation.md
|
|
|
|
|
- Setting up site search: setup/setting-up-site-search.md
|
2020-07-22 09:54:17 +02:00
|
|
|
|
- Setting up site analytics: setup/setting-up-site-analytics.md
|
2020-07-21 16:01:22 +02:00
|
|
|
|
- Adding social links: setup/adding-social-links.md
|
2020-07-22 13:37:14 +02:00
|
|
|
|
- Adding a git repository: setup/adding-a-git-repository.md
|
2020-07-21 16:01:22 +02:00
|
|
|
|
- Adding a comment system: setup/adding-a-comment-system.md
|
2020-07-22 13:37:14 +02:00
|
|
|
|
#- Adding an announcement bar: setup/adding-an-announcement-bar.md
|
2020-07-21 16:01:22 +02:00
|
|
|
|
#- Adding a landing page: setup/adding-a-landing-page.md
|
2020-07-21 13:33:44 +02:00
|
|
|
|
- Reference:
|
|
|
|
|
- Admonitions: reference/admonitions.md
|
|
|
|
|
- Code blocks: reference/code-blocks.md
|
|
|
|
|
- Content tabs: reference/content-tabs.md
|
|
|
|
|
- Footnotes: reference/footnotes.md
|
2020-07-27 12:05:07 +02:00
|
|
|
|
- Formatting: reference/formatting.md
|
2020-07-24 09:59:16 +02:00
|
|
|
|
- Icons + Emojis: reference/icons-emojis.md
|
2020-07-21 13:33:44 +02:00
|
|
|
|
- Lists: reference/lists.md
|
2020-07-24 16:11:42 +02:00
|
|
|
|
- MathJax: reference/mathjax.md
|
2020-07-22 13:37:14 +02:00
|
|
|
|
- Meta tags: reference/meta-tags.md
|
|
|
|
|
- Changelog:
|
|
|
|
|
- Release notes: changelog.md
|
|
|
|
|
- Upgrading: upgrading.md
|
2020-07-23 16:07:16 +02:00
|
|
|
|
- Deprecations: deprecations.md
|
2017-04-05 12:48:09 +02:00
|
|
|
|
|
|
|
|
|
# Google Analytics
|
|
|
|
|
google_analytics:
|
|
|
|
|
- !!python/object/apply:os.getenv ["GOOGLE_ANALYTICS_KEY"]
|
|
|
|
|
- auto
|