-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
212 lines (202 loc) · 5.25 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
site_name: py-ballisticcalc
site_description: LGPL library for small arms ballistic calculations based on point-mass (3 DoF) plus spin drift.
edit_uri: edit/main/docs/
site_url: https://o-murphy.github.io/py-ballisticcalc/
nav:
- Get started:
- Welcome: index.md
# - Why use py-balllisticcalc: why.md
- Help: help.md
- Installation: install.md
# - Version policy: version-policy.md
- Contributing: contributing.md
# - Changelog: changelog.md
- Concepts:
# - Classes: concepts/classes.md
- Munition:
# - concepts/munition/index.md
- "🔫 Weapon": concepts/munition/weapon.md # <-- Added a dummy sub-level
- "💣 Ammo": concepts/munition/ammo.md
- DragModel: concepts/drag_model.md
- Conditions:
- "🌡️ Atmo": concepts/conditions/atmo.md
- "💨 Wind": concepts/conditions/wind.md
- "🎯 Shot": concepts/conditions/shot.md
- Units and Dimensions:
# - DSL:
- "📏 Unit": concepts/unit.md
# - AbstractUnit:
# - Distance:
# - Velocity:
# - Angular:
# - Pressure:
# - Temperature:
# - Weight:
# - Energy:
- TrajectoryData: concepts/trajectory_data.md
- Vector: concepts/vector.md
- Constants: concepts/constants.md
# - Interface:
- Engines:
- "⚙️ Engines": concepts/engines.md
# - Logger: concepts/logger.md
# - Performance:
- API Documentation:
# - Units:
# - DSL:
# - Unit:
# - AbstractUnit:
# - Distance:
# - Velocity:
# - Angular:
# - Pressure:
# - Temperature:
# - Weight:
# - Energy:
- Munition:
- Weapon: api/munition/weapon.md
- Ammo: api/munition/ammo.md
- DragModel: api/drag_model.md
- Conditions:
- Atmo: api/conditions/atmo.md
- Wind: api/conditions/wind.md
- Shot: api/conditions/shot.md
- TrajectoryData: api/trajectory_data.md
- Constants: api/constants.md
- Vector: api/vector.md
# - Interface:
# - Engines: api/engines.md
# - Logger: api/logger.md
#- Examples:
#- Error Messages:
#- Internals:
# - Architecture: internals/architecture.md
- Contributors: contributors.md
- About: about.md
theme:
name: 'material'
custom_dir: 'docs/theme'
palette:
- media: "(prefers-color-scheme)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/lightbulb
name: "Switch to light mode"
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/lightbulb-outline
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/lightbulb-auto-outline
name: "Switch to system preference"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.tabs
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
# - navigation.sections
# - navigation.path
- navigation.expand
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
logo: 'favicon.svg'
favicon: 'favicon.svg'
repo_name: o-murphy/py_ballisticcalc
repo_url: https://github.com/o-murphy/py_ballisticcalc
extra:
version:
provider: mike
# alias: true
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!
# https://www.mkdocs.org/user-guide/configuration/#validation
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
extra_css:
- 'extra/terminal.css'
- 'extra/tweaks.css'
extra_javascript:
- 'extra/feedback.js'
# - 'extra/fluff.js'
- 'https://samuelcolvin.github.io/mkdocs-run-code/run_code_main.js'
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
pygments_lang_class: true
- pymdownx.extra
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
#hooks:
#- 'docs/plugins/main.py'
#watch:
# - py_ballisticcalc
plugins:
#- social
- mike:
alias_type: symlink
canonical_version: latest
- search
#- exclude:
# glob:
# - theme/announce.html
# - plugins/*
# - __pycache__/*
- autorefs
- mkdocstrings:
handlers:
python:
paths: [.]
options:
show_source: true
members_order: source
separate_signature: true
filters: ["!^_"]
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_signature_annotations: true
signature_crossrefs: true
docstring_section_style: table
import:
- url: https://docs.python.org/3/objects.inv
domains: [py, std]