File: mkdocs.yml

package info (click to toggle)
python-openapi-core 0.22.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,104 kB
  • sloc: python: 19,979; makefile: 44
file content (109 lines) | stat: -rw-r--r-- 2,849 bytes parent folder | download
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
site_name: OpenAPI-core
site_description: OpenAPI for Python
site_url: https://openapi-core.readthedocs.io/
theme:
  name: material
  icon:
    repo: fontawesome/brands/github-alt
  palette:
  - media: "(prefers-color-scheme)"
    toggle:
      icon: material/toggle-switch
      name: Switch to light mode
  - media: '(prefers-color-scheme: light)'
    scheme: default
    primary: lime
    accent: amber
    toggle:
      icon: material/toggle-switch-off-outline
      name: Switch to dark mode
  - media: '(prefers-color-scheme: dark)'
    scheme: slate
    primary: lime
    accent: amber
    toggle:
      icon: material/toggle-switch-off
      name: Switch to system preference
  features:
    - content.code.annotate
    - content.code.copy
    - content.footnote.tooltips
    - content.tabs.link
    - content.tooltips
    - navigation.footer
    - navigation.indexes
    - navigation.instant
    - navigation.instant.prefetch
    - navigation.instant.progress
    - navigation.path
    - navigation.tabs
    - navigation.tabs.sticky
    - navigation.top
    - navigation.tracking
    - search.highlight
    - search.share
    - search.suggest
    - toc.follow
repo_name: python-openapi/openapi-core
repo_url: https://github.com/python-openapi/openapi-core
plugins:
  - mkdocstrings:
      handlers:
        python:
          options:
            extensions:
              - griffe_typingdoc
            show_root_heading: true
            show_if_no_docstring: true
            inherited_members: true
            members_order: source
            unwrap_annotated: true
            docstring_section_style: spacy
            separate_signature: true
            signature_crossrefs: true
            show_category_heading: true
            show_signature_annotations: true
            show_symbol_type_heading: true
            show_symbol_type_toc: true
nav:
  - OpenAPI-core: index.md
  - unmarshalling.md
  - validation.md
  - Integrations:
    - integrations/index.md
    - integrations/aiohttp.md
    - integrations/bottle.md
    - integrations/django.md
    - integrations/falcon.md
    - integrations/fastapi.md
    - integrations/flask.md
    - integrations/pyramid.md
    - integrations/requests.md
    - integrations/starlette.md
    - integrations/tornado.md
    - integrations/werkzeug.md
  - configuration.md
  - security.md
  - extensions.md
  - Reference:
    - reference/index.md
    - reference/openapi.md
    - reference/configurations.md
    - reference/datatypes.md
    - reference/protocols.md
    - reference/types.md
  - contributing.md
markdown_extensions:
  - admonition
  - toc:
      permalink: true
  - pymdownx.details
  - pymdownx.highlight:
      line_spans: __span
  - pymdownx.superfences
  - pymdownx.tabbed:
      alternate_style: true
extra:
  analytics:
    provider: google
    property: G-J6T05Z51NY