-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
156 lines (147 loc) · 4.11 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# Project information
site_name: Navitia SDK Docs
site_url: https://hove-io.github.io/navitia_sdk_docs/
site_author: Front Mobile Team
site_description: >-
Create your own transport application using Navitia SDKs
# Repository
repo_name: hove-io/navitia_sdk_docs
repo_url: https://github.com/hove-io/navitia_sdk_docs
# Copyright
copyright: Copyright © 2024 Hove
# Configuration
theme:
name: material
features:
- content.code.annotate
- content.tabs.link
- navigation.instant
- navigation.top
- navigation.tracking
- search.share
- toc.follow
palette:
- scheme: navitia-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: assets/img/favicon.svg
logo: assets/img/hove.svg
# Code snippets/tables/emojis
markdown_extensions:
- admonition
- attr_list
- def_list
- md_in_html
- tables
- toc:
toc_depth: 4
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
# Social links/languages
extra:
#generator: false // Hide the Made with Material MKDocs
social:
- icon: fontawesome/brands/github
link: https://github.com/hove-io/navitia
- icon: fontawesome/brands/medium
link: https://navitia-io.medium.com/
- icon: fontawesome/brands/twitter
link: https://twitter.com/hove_kdigital
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/kisiodigital
- icon: fontawesome/solid/frog
link: https://kisiodigital.jfrog.io/
# Page tree
nav:
- Home: index.md
- Getting started: getting_started.md
- Around Me:
- Android:
- Documentation: around_me/android/index.md
- Changelogs: around_me/android/changelogs.md
- iOS:
- Documentation: around_me/ios/index.md
- Changelogs: around_me/ios/changelogs.md
- Screens: around_me/screens/index.md
- Bookmark:
- Android:
- Documentation: bookmark/android/index.md
- Changelogs: bookmark/android/changelogs.md
- iOS:
- Documentation: bookmark/ios/index.md
- Changelogs: bookmark/ios/changelogs.md
- Screens: bookmark/screens/index.md
- Expert:
- Android:
- Documentation: expert/android/index.md
- APIs: expert/android/apis.md
- Models: expert/android/models.md
- Changelogs: expert/android/changelogs.md
- iOS:
- Documentation: expert/ios/index.md
- APIs: expert/ios/apis.md
- Models: expert/ios/models.md
- Changelogs: expert/ios/changelogs.md
- Journey:
- Android:
- Documentation: journey/android/index.md
- Changelogs: journey/android/changelogs.md
- iOS:
- Documentation: journey/ios/index.md
- Changelogs: journey/ios/changelogs.md
- Screens: journey/screens/index.md
- Schedule:
- Android:
- Documentation: schedule/android/index.md
- Changelogs: schedule/android/changelogs.md
- iOS:
- Documentation: schedule/ios/index.md
- Changelogs: schedule/ios/changelogs.md
- Screens: schedule/screens/index.md
- Traffic:
- Android:
- Documentation: traffic/android/index.md
- Changelogs: traffic/android/changelogs.md
- iOS:
- Documentation: traffic/ios/index.md
- Changelogs: traffic/ios/changelogs.md
- Screens: traffic/screens/index.md
# Extra config
extra_css:
- css/extra.css
# Hide edit button
edit_uri: ""
# Plugins
plugins:
- search
- exclude:
glob:
#- around_me/*
#- bookmark/*
#- expert/*
#- journey/*
#- schedule/*
#- traffic/*