1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 03:18:21 +02:00
mkdocs-material/mkdocs.yml

82 lines
2.5 KiB
YAML
Raw Normal View History

2016-02-04 15:03:20 +01:00
# Copyright (c) 2016 Martin Donath <martin.donath@squidfunk.com>
# 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-02-09 21:59:37 +01:00
site_name: Material
2016-02-04 15:03:20 +01:00
site_description: A material design theme for MkDocs
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
2016-08-07 18:01:56 +02:00
copyright: 'Copyright &copy 2016 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-08-07 18:01:56 +02:00
version: 0.2.4
2016-02-09 21:59:37 +01:00
logo: images/logo.png
2016-08-07 18:01:56 +02:00
font:
text: Ubuntu
mono: Ubuntu Mono
2016-02-04 15:03:20 +01:00
author:
github: squidfunk
twitter: squidfunk
# Extensions
markdown_extensions:
2016-09-23 11:56:25 +02:00
- markdown.extensions.admonition
- 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)
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- 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
- Codehilite: extensions/codehilite.md
- Footnotes: extensions/footnotes.md
2016-11-02 19:21:14 +01:00
- Metadata: extensions/metadata.md
2016-09-02 22:59:14 +02:00
- Permalinks: extensions/permalinks.md
2016-11-02 19:21:14 +01:00
- PyMdown:
- Overview: extensions/pymdown/overview.md
2016-08-07 18:01:56 +02:00
- Specimen: specimen.md
2016-02-09 21:59:37 +01:00
- Customization: customization.md
- License: license.md