forked from marcosschroh/dataclasses-avroschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
65 lines (60 loc) · 1.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
site_name: Dataclasses Avro Schema
site_description: avro, kafka, client, avro schema, apache, python
theme:
name: 'material'
palette:
- scheme: default
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: indigo
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotate
repo_name: marcosschroh/dataclasses-avroschema
repo_url: https://github.com/marcosschroh/dataclasses-avroschema
nav:
- Introduction: 'index.md'
- Avro Schema and Python Classes: 'avro_schema.md'
- Fields Specification: 'fields_specification.md'
- Primitive Types: 'primitive_types.md'
- Complex Types: 'complex_types.md'
- Logical Types: 'logical_types.md'
- Records: 'records.md'
- Schema Relationships: 'schema_relationships.md'
- Serialization: 'serialization.md'
- Case Schemas: 'case.md'
- Factory and fixtures: 'factories_and_fixtures.md'
- Model Generator: 'model_generator.md'
- Pydantic: 'pydantic.md'
- Faust: 'faust_records.md'
- Kafka examples: 'kafka_examples.md'
- Redis examples: 'redis_examples.md'
- Good Practices: good_practices.md
- Migration Guide: 'migration_guide.md'
markdown_extensions:
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.details
- tables
- attr_list
- md_in_html
- admonition
- pymdownx.tabbed:
alternate_style: true