-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
84 lines (76 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
site_name: numerary
site_description: Python hacks for type-checking numbers
site_url: https://posita.github.io/numerary/
site_author: Matt Bogosian
copyright: <i>Copyright and other protections apply.
Please see the accompanying <tt>LICENSE</tt> file for rights and restrictions governing use of this software.
All rights not expressly waived or licensed are reserved.
If that file is missing or appears to be modified from its original, then please contact the author before viewing or using this software in any capacity.</i>
repo_url: https://github.com/posita/numerary
nav:
- Introduction: index.md
- Why would you do this?: whytho.md
- Release notes: notes.md
- Contributing: contrib.md
- License: license.md
- API:
- <tt>numerary</tt>: numerary.md
- <tt>numerary.protocol</tt>: numerary.protocol.md
- <tt>numerary.types</tt>: numerary.types.md
# See:
# * <https://squidfunk.github.io/mkdocs-material/reference/admonitions/>, etc.
# * <https://mkdocstrings.github.io/>
# * <https://www.mkdocs.org/>
extra:
version:
provider: mike
__vers_str__: 0.4.4
extra_javascript:
- js/site.js
markdown_extensions:
- admonition
- def_list
- footnotes
- pymdownx.emoji
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
plugins:
- exclude:
# TODO(posita): See <https://github.com/apenwarr/mkdocs-exclude/pull/9>
# gitignore: true
glob:
- "Makefile"
- "*.py"
- macros
- mike:
version_selector: true
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_if_no_docstring: true
show_root_full_path: false
show_signature_annotations: true
- search
theme:
name: "material" # required by mkdocstrings
features:
- content.code.annotate
- content.tabs.link
- navigation.expand
- navigation.sections
- toc.integrate
palette:
- scheme: default
primary: deep-orange
accent: deep-orange
watch:
- numerary