forked from opentripplanner/OpenTripPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
116 lines (108 loc) · 4.07 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
# This file configures the generation of static documentation by MkDocs
# based on Markdown source files in the 'docs' directory of the OTP repo.
# This static documentation is built and served by Readthedocs
# at opentripplanner.readthedocs.org
site_name: OpenTripPlanner 2
site_url: https://docs.opentripplanner.org
repo_url: https://github.com/opentripplanner/OpenTripPlanner
docs_dir: docs
site_dir: target/mkdocs
strict: true
plugins:
- "no-sitemap"
- search
# remove this after OTP 2.4.0 has been released
- redirects:
redirect_maps:
'sandbox/LegacyGraphQLApi.md': 'sandbox/GtfsGraphQlApi.md'
theme:
name: material
features:
- toc.integrate
- content.code.copy
- search.suggest
- search.highlight
palette:
primary: blue
accent: blue
scheme: default
extra:
version:
provider: mike
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
# MkDocs will automatically discover pages if you don't list them here.
# In that case subdirectories can be used to organize pages.
# The list below organizes them into categories and controls the order.
nav:
- Home: 'index.md'
- About:
- Product Overview: 'Product-Overview.md'
- Governance: 'Governance.md'
- History: 'History.md'
- Presentations: 'Presentations.md'
- Deployments: 'Deployments.md'
- Changelog: 'Changelog.md'
- Visual Identity: 'Visual-Identity.md'
- 'Usage':
- Basic Tutorial: 'Basic-Tutorial.md'
- Data Sources: 'Data-Sources.md'
- Getting OTP: 'Getting-OTP.md'
- Container Image: 'Container-Image.md'
- System Requirements and Suggestions: 'System-Requirements.md'
- Preparing OSM Data: 'Preparing-OSM.md'
- Netex and SIRI: 'Netex-Norway.md'
- Security: 'Security.md'
- Troubleshooting: 'Troubleshooting-Routing.md'
- Comparing OTP2 to OTP1: 'Version-Comparison.md'
- APIs:
- Introduction: 'Apis.md'
- GraphQL Tutorial: 'GraphQL-Tutorial.md'
- Configuration:
- Introduction: 'Configuration.md'
- Reference:
- Build: 'BuildConfiguration.md'
- Router: 'RouterConfiguration.md'
- "Route Request": 'RouteRequest.md'
- "Realtime Updaters": 'UpdaterConfig.md'
- Topic overviews:
- "Boarding Locations": 'BoardingLocations.md'
- "Stop Area Relations": 'StopAreas.md'