forked from doordash-oss/oapi-codegen-dd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
90 lines (89 loc) · 2.41 KB
/
mkdocs.yml
File metadata and controls
90 lines (89 loc) · 2.41 KB
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
site_name: "Oapi-Codegen Documentation"
repo_url: https://github.com/doordash-oss/oapi-codegen-dd
watch:
- docs
- examples
theme:
custom_dir: docs/assets
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.suggest
- search.highlight
#- header.autohide
font:
code: Roboto Mono
text: Roboto
locale: en
logo: images/logo.png
favicon: images/favicon.ico
name: material
icon:
annotation: material/plus-circle
palette:
- accent: indigo
primary: blue
scheme: default
toggle:
icon: material/weather-night
name: Switch to dark mode
- accent: red
primary: black
scheme: slate
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search:
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.details
- pymdownx.snippets:
base_path: [".", "examples"]
- toc:
permalink: true
extra:
generator: false
extra_css:
- css/extra.css
extra_javascript:
- js/extra.js
nav:
- Get Started:
- 'Welcome': 'index.md'
- 'Migrate from v2': 'migrate-from-v2.md'
- 'Configuration': 'configuration.md'
- 'Overlays': 'overlays.md'
- 'Server Generation': 'server-generation.md'
- 'MCP Server': 'mcp-server.md'
- 'Validation': 'validation.md'
- 'Union Types': 'union-types.md'
- 'Additional Properties': 'additional-properties.md'
- 'API': 'api.md'
- Extensions:
- 'Overview': 'extensions.md'
- 'x-go-type': 'extensions/x-go-type.md'
- 'x-go-type-skip-optional-pointer': 'extensions/x-go-type-skip-optional-pointer.md'
- 'x-go-name': 'extensions/x-go-name.md'
- 'x-go-type-name': 'extensions/x-go-type-name.md'
- 'x-oapi-codegen-only-honour-go-name': 'extensions/x-oapi-codegen-only-honour-go-name.md'
- 'x-omitempty': 'extensions/x-omitempty.md'
- 'x-go-json-ignore': 'extensions/x-go-json-ignore.md'
- 'x-oapi-codegen-extra-tags': 'extensions/x-oapi-codegen-extra-tags.md'
- 'x-sensitive-data': 'extensions/x-sensitive-data.md'
- 'x-enum-names': 'extensions/x-enum-names.md'
- 'x-deprecated-reason': 'extensions/x-deprecated-reason.md'
- 'x-mcp': 'extensions/x-mcp.md'