-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
executable file
·86 lines (82 loc) · 2.23 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
site_name: gtfs-skims
nav:
- Home: index.md
- Installation: installation.md
- Running the tool: run.md
- Methodology: methodology.md
- Contributing: contributing.md
- Changelog: CHANGELOG.md
- Reference:
- Command line interface: api/cli.md
theme:
name: material
custom_dir: docs/overrides
features:
- navigation.indexes
- navigation.top
- content.code.copy
- content.code.annotate
repo_url: https://github.com/arup-group/gtfs_skims/
site_dir: .docs
markdown_extensions:
- admonition
- attr_list
- mkdocs-click
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
clickable_checkbox: true
- toc:
permalink: "#"
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- def_list
- pymdownx.tasklist:
custom_checkbox: true
hooks:
- docs/static/hooks.py
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_section_style: spacy
show_bases: true
filters:
- "!^_"
merge_init_into_class: true
show_if_no_docstring: true
signature_crossrefs: true
show_root_toc_entry: false
show_signature_annotations: false
paths: [src]
import:
- https://docs.python.org/3/objects.inv
- https://pandas.pydata.org/docs/objects.inv
- https://numpy.org/doc/stable/objects.inv
watch:
- src/gtfs_skims
extra_css:
- static/extras.css
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
extra:
version:
provider: mike
extra_javascript:
- static/extras.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js