-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
106 lines (102 loc) · 3.42 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
102
103
104
105
106
---
# Project
site_name: ndfc-python
site_url: https://allenrobel.github.io/ndfc-python
site_author: Allen Robel
site_description: >-
Python classes and example scripts to interact with Cisco's Nexus Dashboard
Fabric Controller
# Repo
repo_name: allenrobel/ndfc-python
repo_url: https://github.com/allenrobel/ndfc-python
edit_uri: blob/mkdocs/docs/
remote_branch: main
# Configuration
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- navigation.footer
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: deep orange
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
# Extensions
markdown_extensions:
- attr_list
- def_list
- footnotes
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: index.md
- Setup:
- Clone the repositories: setup/clone-the-repositories.md
- Update your PYTHONPATH: setup/update-your-pythonpath.md
- Set Credentials: setup/set-credentials.md
- Enable logging: setup/enable-logging.md
- Running the example scripts: setup/running-the-example-scripts.md
- Using Ansible Vault: setup/using-ansible-vault.md
- Scripts:
- bootflash_files_delete.py: scripts/bootflash_files_delete.md
- bootflash_files_info.py: scripts/bootflash_files_info.md
- controller_info.py: scripts/controller_info.md
- credentials.py: scripts/credentials.md
- device_info.py: scripts/device_info.md
- fabric_create.py: scripts/fabric_create.md
- fabric_info.py: scripts/fabric_info.md
- fabric_replace.py: scripts/fabric_replace.md
- image_policy_create.py: scripts/image_policy_create.md
- image_policy_delete.py: scripts/image_policy_delete.md
- image_policy_info.py: scripts/image_policy_info.md
- image_policy_info_all.py: scripts/image_policy_info_all.md
- image_policy_override.py: scripts/image_policy_override.md
- image_policy_replace.py: scripts/image_policy_replace.md
- maintenance_mode.py: scripts/maintenance_mode.md
- maintenance_mode_info.py: scripts/maintenance_mode_info.md
- network_create.py: scripts/network_create.md
- network_delete.py: scripts/network_delete.md
- reachability.py: scripts/reachability.md
- rest_get_request.py: scripts/rest_get_request.md
- rest_post_request.py: scripts/rest_post_request.md
- vrf_create.py: scripts/vrf_create.md
- vrf_delete.py: scripts/vrf_delete.md
- Classes:
- Overview: classes/overview.md
- CredentialSelector: classes/CredentialSelector.md
- Log: classes/Log.md
- NetworkCreate: classes/NetworkCreate.md
- NetworkDelete: classes/NetworkDelete.md
- Reachability: classes/Reachability.md