-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
79 lines (72 loc) · 1.83 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
site_name: Gnetcli
nav:
- Home:
- Home: index.md
- Concept: concept.md
- Comparison: comparison.md
- Getting started:
- Installation: install.md
- Basic usage: basic_usage.md
- New device: new_device.md
- CLI basic usage: basic_usage_cli.md
- GRPC: grpc.md
- GRPC-server basic usage: basic_usage_server.md
- GRPC-server python sdk: basic_usage_server_pysdk.md
- Architecture: architecture.md
- Example:
- Cisco CLI: examples_simple_exec.md
- With question: examples_with_question.md
plugins:
- mermaid2
site_author: Aleksandr Balezin
site_description: >-
The ultimate solution for CLI automation in Golang
repo_name: annetutil/gnetcli
repo_url: https://github.com/annetutil/gnetcli
edit_uri: ""
theme:
name: material
analytics:
provider: google
gtag: G-F8LHZR9DT2
features:
- navigation.tabs
#- navigation.expand
- navigation.top
#- navigation.sections
- navigation.prune
include_search_page: false
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: en
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: cyan
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Manrope
code: Fira Mono
markdown_extensions:
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid
- pymdownx.snippets:
check_paths: true
extra:
generator: false