forked from PySport/kloppy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (77 loc) · 2.28 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
site_name: kloppy 3.15.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
- Open-data: open-data.md
- Getting-started:
- Datafactory: getting-started/datafactory.ipynb
- Metrica: getting-started/metrica.ipynb
- Opta: getting-started/opta.ipynb
- SecondSpectrum: getting-started/secondspectrum.ipynb
- SkillCorner: getting-started/skillcorner.ipynb
- Sportec: getting-started/sportec.ipynb
- Sportscode: getting-started/sportscode.ipynb
- Statsbomb: getting-started/statsbomb.ipynb
- StatsPerform: getting-started/statsperform.ipynb
- TRACAB: getting-started/tracab.ipynb
- Wyscout: getting-started/wyscout.ipynb
- Examples:
- Event Data: examples/event_data.ipynb
- Tracking Data: examples/tracking_data.ipynb
- Broadcast Tracking Data: examples/broadcast_tracking_data.ipynb
- Code data: examples/code_data.ipynb
- State: examples/state.ipynb
- Navigating: examples/navigating.ipynb
- Plotting: examples/plotting.ipynb
- Config: examples/config.ipynb
- Adapters: examples/adapter.ipynb
# - API Reference:
# - Domain:
# - Common: api/domain/common.md
# - Pitch: api/domain/pitch.md
# - Tracking: api/domain/tracking.md
# - Event: api/domain/event.md
- Providers: 'providers.md'
- Other:
- 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
- exclude:
glob:
- presentations/*
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
linenums: true
linenums_style: table
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- footnotes