-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
mkdocs.yml
63 lines (56 loc) · 1.29 KB
/
mkdocs.yml
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
59
60
61
62
63
site_name: python-devtools
site_description: Python's missing debug print command and other development tools.
strict: true
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
extra:
analytics:
provider: google
property: UA-62733018-4
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/samuelcolvin/python-devtools
- icon: fontawesome/brands/twitter
link: https://twitter.com/samuel_colvin
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
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- exclude:
glob:
- build/*
- examples/*
- requirements.txt
- mkdocs-simple-hooks:
hooks:
on_pre_build: 'docs.plugins:on_pre_build'
on_files: 'docs.plugins:on_files'
on_page_markdown: 'docs.plugins:on_page_markdown'