-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
mkdocs.yaml
97 lines (95 loc) · 2.97 KB
/
mkdocs.yaml
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
site_name: Pyosmium
theme:
font: false
name: material
features:
- navigation.tabs
- navigation.tabs.sticky
- toc.integrate
plugins:
- privacy
copyright: Copyright © Sarah Hoffmann
repo_url: https://github.com/osmcode/pyosmium
site_url: https://osmcode.org/pyosmium/
nav:
- index.md
- 'User Manual':
- 'user_manual.md'
- 'user_manual/01-First-Steps.md'
- 'user_manual/02-Extracting-Object-Data.md'
- 'user_manual/03-Working-with-Geometries.md'
- 'user_manual/04-Working-with-Filters.md'
- 'user_manual/05-Working-with-Handlers.md'
- 'user_manual/06-Writing-Data.md'
- 'user_manual/07-Input-Formats-And-Other-Sources.md'
- 'user_manual/08-Working-With-Change-Files.md'
- 'user_manual/09-Working-With-History-Files.md'
- 'user_manual/10-Replication-Tools.md'
- 'Cookbooks':
- 'cookbooks.md'
- 'cookbooks/Enhance-Tags.ipynb'
- 'cookbooks/Filtering-Data-By-Tags.ipynb'
- 'cookbooks/Filter-Data-By-Geometry.ipynb'
- 'cookbooks/Adding-Node-Infos-To-Boundaries.ipynb'
- 'cookbooks/Adding-Route-Info-To-Ways.ipynb'
- 'cookbooks/Visualizing-Data-With-Geopandas.ipynb'
- 'Reference':
- reference.md
- OSM Data Containers: 'reference/Dataclasses.md'
- Iterative Data Reading: 'reference/File-Processing.md'
- Handlers and Handler Functions: 'reference/Handler-Processing.md'
- Filters: 'reference/Filters.md'
- Data Writers: 'reference/Data-Writers.md'
- IO Classes: 'reference/IO.md'
- Geometry Processing: 'reference/Geometry-Functions.md'
- Area Building: 'reference/Area.md'
- Indexes: 'reference/Indexes.md'
- Replication: 'reference/Replication.md'
- Exceptions: 'reference/Exceptions.md'
exclude_docs: |
.*.swp
markdown_extensions:
- pymdownx.highlight:
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- def_list
- attr_list
- tables
- footnotes
- toc:
toc_depth: 3
permalink: 🔗
extra_css:
- css/mkdocstrings.css
- css/extra.css
site_dir: site-html
plugins:
- search
- autorefs
- mkdocs-jupyter
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
allow_inspection: false
heading_level: 3
show_source: False
show_bases: True
show_root_heading: True
show_signature_annotations: True
show_symbol_type_heading: True
annotations_path: full
filters:
- "!^_"
- "__init__"