forked from PySport/kloppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
59 lines (54 loc) · 1.44 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
site_name: kloppy 2.1.0
site_url: https://kloppy.pysport.org
repo_url: https://github.com/PySport/kloppy
repo_name: 'GitHub'
edit_uri: blob/master/docs/
extra_css: [style.css]
# TODO: set-up Google Analytics project to track
google_analytics: null
theme:
name: material
custom_dir: docs/overrides
nav:
- Home: index.md
- Quickstart Guides:
- Event Data: quickstart/event_data.ipynb
- Tracking Data: quickstart/tracking_data.ipynb
- Broadcast Tracking Data: quickstart/broadcast_tracking_data.ipynb
- Code data: quickstart/code_data.ipynb
- State: quickstart/state.ipynb
- Examples: quickstart/examples.ipynb
- API Reference:
- Helpers: api/helpers.md
- Domain:
- Common: api/domain/common.md
- Pitch: api/domain/pitch.md
- Tracking: api/domain/tracking.md
- Event: api/domain/event.md
- Providers: 'providers.md'
- Issues: 'issues.md'
- Contributing: 'contributing.md'
- Sponsors: 'sponsors.md'
- About: 'about.md'
- Changelog: 'changelog.md'
- License: 'license.md'
plugins:
- mkdocs-jupyter:
include_source: True
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_source: true
show_root_heading: true
heading_level: 3
watch:
- kloppy
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
linenums: true
linenums_style: table
- footnotes