-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
mkdocs.yml
56 lines (51 loc) · 1.21 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
site_name: Python Schema Registry Client
site_description: avro, kafka, client, faust, schema
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/python-schema-registry-client
repo_url: https://github.com/marcosschroh/python-schema-registry-client
nav:
- Introduction: 'index.md'
- SchemaRegistryClient Api: 'client.md'
- Serializers: 'serializer.md'
- Faust integration: 'faust.md'
- Schemas: 'schemas.md'
- Exceptions: 'exceptions.md'
- Schema Registry Server: 'schemaregistry_server.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
- codehilite
plugins:
- autorefs
- mkdocstrings