-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
mkdocs.yml
101 lines (91 loc) · 2.3 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
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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: pure-protobuf
nav:
- index.md
- base_message.md
- annotating_fields.md
- well_known.md
- migration.md
- custom_field_types.md
theme:
icon:
repo: "fontawesome/brands/github"
name: material
features:
- content.action.edit
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.sections
# - navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- search.highlight
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: System theme
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Light mode
plugins:
- git-revision-date-localized:
enable_creation_date: false
- search:
lang: en
- social
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
show_root_toc_entry: false
show_signature_annotations: true
separate_signature: true
show_bases: false
merge_init_into_class: false
members_order: "source"
markdown_extensions:
- admonition
- attr_list
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
repo_url: https://github.com/eigenein/protobuf
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/eigenein
name: eigenein on GitHub
analytics:
provider: google
property: G-CPNSYW2HX7
copyright: Copyright © 2011-2024 Pavel Perestoronin
site_url: "https://eigenein.github.io/protobuf"
watch:
- "pure_protobuf"