forked from samuelcolvin/python-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
58 lines (51 loc) · 1.08 KB
/
mkdocs.yml
File metadata and controls
58 lines (51 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
site_name: python-devtools
site_description: Python's missing debug print command and other development tools.
strict: false
site_url: https://python-devtools.helpmanual.io/
theme:
name: 'material'
custom_dir: 'docs/theme'
palette:
primary: pink
accent: pink
repo_name: samuelcolvin/python-devtools
repo_url: https://github.com/samuelcolvin/python-devtools
#
# FIXME: google_analytics is deprecated. This section must be replaced with
# something like this instead:
#
# analytics:
# gtag: G-123456
#
# Once this is replaced, re-enable strict mode at the top of this file.
#
# See https://github.com/mkdocs/mkdocs/issues/2252 for details.
#
google_analytics:
- 'UA-62733018-4'
- 'auto'
extra_css:
- 'theme/customization.css'
nav:
- Overview: index.md
- install.md
- usage.md
- history.md
markdown_extensions:
- markdown.extensions.codehilite:
guess_lang: false
- markdown_include.include:
base_path: docs
- toc:
permalink: 🔗
- admonition
- codehilite
- extra
- attr_list
plugins:
- search
- exclude:
glob:
- build/*
- examples/*
- requirements.txt