Files
datamodel-code-generator/mkdocs.yml
2023-11-25 22:02:03 +09:00

45 lines
1.4 KiB
YAML

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