-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmkdocs.yml
More file actions
103 lines (96 loc) · 2.5 KB
/
mkdocs.yml
File metadata and controls
103 lines (96 loc) · 2.5 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
site_name: phaser Documentation
repo_url: https://github.com/hexane360/phaser
docs_dir: 'docs'
site_dir: 'site'
extra_css:
- style.css
nav:
- Home: index.md
- 'Using phaser':
- using/starting.md
- using/plan.md
- using/algorithms.md
- using/conventions.md
- API:
- phaser.state: api/state.md
theme:
name: material
font:
text: Open Sans
code: Source Code Pro
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: green
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
#palette:
# primary: purple
# accent: green
#features:
# - navigation.tabs
# - navigation.tabs.sticky
# - navigation.expand
# - navigation.indexes
extra:
version:
provider: mike
extra_javascript:
- javascript/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@4.0.0-beta.7/tex-mml-chtml.min.js
markdown_extensions:
- admonition
- footnotes
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.arithmatex:
generic: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- markdown_include.include:
base_path: docs
plugins:
- search
- autorefs
- mkdocstrings:
#custom_templates: templates
handlers:
python:
paths: [.]
inventories:
# 3rd-party object inventories
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://matplotlib.org/stable/objects.inv
- https://docs.h5py.org/en/latest/objects.inv
options:
docstring_section_style: "spacy"
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
show_if_no_docstring: true
show_root_heading: true
members_order: source
filters: ["!^_", "!^__(all|repr|str)__$", "!^(DType|Num)?[TUKV](_co(ntra)?)?$",]
inherited_members: false
- mike:
version_selector: true
canonical_version: latest
#alias_type: symlink
watch:
- phaser/
- README.md