2017-01-06 19:11:18 +01:00
|
|
|
# Copyright (c) 2016-2017 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
|
2017-01-12 20:15:30 +01:00
|
|
|
site_description: A Material Design theme for MkDocs
|
2016-02-04 15:03:20 +01:00
|
|
|
site_author: Martin Donath
|
2016-02-09 21:59:37 +01:00
|
|
|
site_url: http://squidfunk.github.io/mkdocs-material/
|
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
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
# Copyright
|
2017-01-14 19:48:00 +01:00
|
|
|
copyright: 'Copyright © 2016 - 2017 Martin Donath'
|
2016-02-04 15:03:20 +01:00
|
|
|
|
|
|
|
# Documentation and theme
|
2016-02-09 12:58:55 +01:00
|
|
|
theme_dir: material
|
2016-02-04 15:03:20 +01:00
|
|
|
|
2016-02-09 21:59:37 +01:00
|
|
|
# Options
|
2016-02-04 15:03:20 +01:00
|
|
|
extra:
|
2016-12-17 12:53:24 +01:00
|
|
|
palette:
|
|
|
|
primary: indigo
|
|
|
|
accent: indigo
|
2016-12-26 18:26:34 +01:00
|
|
|
social:
|
2017-01-04 20:16:12 +01:00
|
|
|
- type: github-alt
|
2016-12-26 18:26:34 +01:00
|
|
|
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-04 15:03:20 +01:00
|
|
|
|
|
|
|
# Extensions
|
|
|
|
markdown_extensions:
|
2016-09-23 11:56:25 +02:00
|
|
|
- markdown.extensions.admonition
|
2016-10-30 10:36:18 +01:00
|
|
|
- markdown.extensions.codehilite(guess_lang=false)
|
2016-09-23 11:56:25 +02:00
|
|
|
- markdown.extensions.footnotes
|
|
|
|
- markdown.extensions.meta
|
2016-11-02 19:21:14 +01:00
|
|
|
- markdown.extensions.toc(permalink=true)
|
2016-12-15 15:55:40 +01:00
|
|
|
- pymdownx.arithmatex
|
|
|
|
- pymdownx.betterem(smart_enable=all)
|
2016-11-02 19:21:14 +01:00
|
|
|
- pymdownx.caret
|
|
|
|
- pymdownx.critic
|
2017-01-09 22:25:15 +01:00
|
|
|
- pymdownx.emoji:
|
|
|
|
emoji_generator: !!python/name:pymdownx.emoji.to_svg
|
2016-11-02 19:21:14 +01:00
|
|
|
- pymdownx.inlinehilite
|
|
|
|
- pymdownx.magiclink
|
|
|
|
- pymdownx.mark
|
|
|
|
- pymdownx.smartsymbols
|
2016-10-23 10:21:37 +02:00
|
|
|
- pymdownx.superfences
|
2016-11-02 19:21:14 +01:00
|
|
|
- pymdownx.tasklist(custom_checkbox=true)
|
|
|
|
- pymdownx.tilde
|
|
|
|
|
2016-02-04 15:03:20 +01:00
|
|
|
# Page tree
|
|
|
|
pages:
|
2016-02-09 21:59:37 +01:00
|
|
|
- Material: index.md
|
|
|
|
- Getting started: getting-started.md
|
2016-09-02 22:59:14 +02:00
|
|
|
- Extensions:
|
|
|
|
- Admonition: extensions/admonition.md
|
2017-01-09 23:55:04 +01:00
|
|
|
- CodeHilite: extensions/codehilite.md
|
2016-09-02 22:59:14 +02:00
|
|
|
- Footnotes: extensions/footnotes.md
|
|
|
|
- Permalinks: extensions/permalinks.md
|
2016-12-27 12:26:25 +01:00
|
|
|
- PyMdown: extensions/pymdown.md
|
2016-08-07 18:01:56 +02:00
|
|
|
- Specimen: specimen.md
|
2016-02-09 21:59:37 +01:00
|
|
|
- Customization: customization.md
|
2017-01-09 21:41:30 +01:00
|
|
|
- Release notes: release-notes.md
|
2017-01-02 23:18:44 +01:00
|
|
|
- Contributing: contributing.md
|
2016-10-23 10:21:37 +02:00
|
|
|
- License: license.md
|