File: mkdocs.yml

package info (click to toggle)
python-apischema 0.18.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,636 kB
  • sloc: python: 15,281; makefile: 3; sh: 2
file content (69 lines) | stat: -rw-r--r-- 1,453 bytes parent folder | download | duplicates (2)
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
site_name: apischema
repo_name: wyfo/apischema
repo_url: https://github.com/wyfo/apischema

theme:
  name: material
  palette:
  - media: "(prefers-color-scheme: light)"
    scheme: default
    primary: green
    accent: indigo
    toggle:
      icon: material/brightness-4
      name: "Switch to dark mode"
  - media: "(prefers-color-scheme: dark)"
    scheme: slate
    primary: green
    accent: indigo
    toggle:
      icon: material/brightness-7
      name: "Switch to light mode"

nav:
- index.md
- data_model.md
- de_serialization.md
- json_schema.md
- validation.md
- Conversions: conversions.md
- GraphQL:
  - Overview: graphql/overview.md
  - graphql/data_model_and_resolvers.md
  - graphql/schema.md
  - graphql/relay.md
- Examples:
  - examples/sqlalchemy_support.md
  - examples/pydantic_support.md
  - examples/attrs_support.md
  - examples/subclass_union.md
  - examples/subclass_tagged_union.md
  - examples/recoverable_fields.md
  - examples/inherited_deserializer.md
- optimizations_and_benchmark.md
- difference_with_pydantic.md
- Releases: https://github.com/wyfo/apischema/releases


markdown_extensions:
- pymdownx.highlight:
    anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- markdown_include.include:
    base_path: examples
- toc:
    permalink: True
#    toc_depth: 3
- admonition

plugins:
- search
- exclude:
    glob:
    - requirements.txt

extra:
  version:
    provider: mike