-
Notifications
You must be signed in to change notification settings - Fork 246
/
mkdocs.yml
89 lines (83 loc) · 2.19 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
site_name: Norfair
theme:
name: material
favicon: img/icon.svg
features:
- navigation.instant
- navigation.tracking
- navigation.sections
- navigation.tabs
icon:
repo: fontawesome/brands/git-alt
logo: img/logo-dark.svg
language: en
repo_name: tryolabs/norfair
repo_url: https://github.com/tryolabs/norfair
edit_uri: ""
extra_css:
- css/custom.css
extra_javascript:
- js/math.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Getting Started: getting_started.md
- Reference:
- reference/index.md
- Tracker: reference/tracker.md
- Drawing: reference/drawing.md
- Video: reference/video.md
- Distances: reference/distances.md
- Camera Motion: reference/camera_motion.md
# - Metrics: reference/metrics.md
- Filter: reference/filter.md
- Utils: reference/utils.md
plugins:
- search
- mkdocstrings:
# custom_templates: templates
default_handler: python
handlers:
python:
options:
show_source: true
docstring_style: numpy
show_root_heading: false
show_root_full_path: false
merge_init_into_class: false
show_if_no_docstring: false
members_order: source
- autorefs
- gen-files:
scripts:
- docs/gen_index.py
- mike:
version_selector: true
extra:
version:
provider: mike
default: latest
markdown_extensions:
- toc:
permalink: "#" # adds link anchors to all titles (default char is ¶)
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
linenums: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.arithmatex:
generic: true
watch:
- norfair