-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
156 lines (147 loc) · 4.18 KB
/
mkdocs.yml
File metadata and controls
156 lines (147 loc) · 4.18 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
site_name: Networka
site_description: Modern Python cli toolkit for network device automation
site_url: https://narrowin.github.io/networka/
repo_url: https://github.com/narrowin/networka
repo_name: narrowin/networka
edit_uri: edit/main/docs/
nav:
- Home: index.md
- Getting started:
- Installation: getting-started.md
- Platform compatibility: platform-compatibility.md
- User guide:
- Configuration: configuration.md
- SSH config sync: ssh-config-sync.md
- Nornir & Containerlab inventory: nornir-inventory.md
- Environment variables: environment-variables.md
- Running commands: running-commands.md
- Results: results.md
- Output modes: output-modes.md
- Backups: backups.md
- File upload: file_upload.md
- Multi-vendor support: multi-vendor-support.md
- Shell completion: shell-completion.md
- Interactive credentials: interactive-credentials.md
- Transport: transport.md
- IP address support: ip-address-support.md
- tmux CLI sessions: tmux-ssh.md
- Recipes: examples/recipes.md
- Examples (user sequences): examples/user_sequences/README.md
- Library (Python API):
- Overview: library/index.md
- Quickstart: library/quickstart.md
- Sessions: library/sessions.md
- Ad-hoc Targets: library/adhoc-targets.md
- Recipes: library/recipes.md
- Troubleshooting: troubleshooting.md
- Vendors:
- Overview: vendors/index.md
- MikroTik RouterOS: vendors/mikrotik/index.md
- Cisco IOS / IOS-XE: vendors/cisco/index.md
- Arista EOS: vendors/arista/index.md
- Juniper JunOS: vendors/juniper/index.md
- Nokia SR Linux: vendors/nokia/index.md
- Reference:
- CLI: reference/cli.md
- API: reference/api.md
- Config Introspection: reference/introspection.md
- Project development: development.md
- Adding platform support: adding-platforms.md
- Documentation guidelines: documentation-guidelines.md
theme:
name: material
logo: assets/images/networka.png
favicon: assets/images/networka.png
custom_dir: docs/overrides
palette:
# Palette toggle for dark mode (default)
- scheme: slate
primary: black
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
primary: "blue grey"
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to dark mode
features:
- navigation.tabs
- navigation.sections
- navigation.top
- navigation.tracking
- navigation.footer
- toc.integrate
- toc.follow
- content.code.copy
- content.action.edit
- content.tooltips
- search.suggest
- search.highlight
- search.share
extra_css:
- assets/stylesheets/extra.css
extra_javascript:
- assets/javascripts/extra.js
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: ["src"]
options:
show_root_heading: true
show_root_full_path: false
show_object_full_path: false
show_category_heading: true
show_if_no_docstring: false
separate_signature: true
docstring_style: numpy
inherited_members: false
filters: ["!^_"]
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- tables
extra:
announcement: >-
From install to first command in seconds. Lightweight CLI automation for network engineers who want results now.
watch:
- src
- docs