-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
mkdocs.yml
44 lines (39 loc) · 1.36 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
site_name: datamodel-code-generator
site_description: This code generator creates pydantic model from an openapi file and others.
theme:
name: 'material'
palette:
primary: 'light blue'
accent: 'light blue'
analytics:
gtag: 275257853
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
repo_name: koxudaxi/datamodel-code-generator
repo_url: https://github.com/koxudaxi/datamodel-code-generator
site_url: https://koxudaxi.github.io/datamodel-code-generator
nav:
- Overview: index.md
- Support data types: supported-data-types.md
- Usage:
- What is the difference between pydantic v1 and v2 output model: what_is_the_difference_between_v1_and_v2.md
- Generate from OpenAPI: openapi.md
- Generate from JSON Schema: jsonschema.md
- Generate from JSON Data: jsondata.md
- Generate from GraphQL Schema: graphql.md
- Custom template: custom_template.md
- Custom formatters: custom-formatters.md
- Using as module: using_as_module.md
- Formatting: formatting.md
- Field Constraints: field-constraints.md
- pyproject.toml: pyproject_toml.md
- Development-Contributing: development-contributing.md
plugins:
- search