-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
50 lines (45 loc) · 1.32 KB
/
mkdocs.yml
File metadata and controls
50 lines (45 loc) · 1.32 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
site_name: Scriptize
repo_url: https://github.com/JonathanTSilva/scriptize
repo_name: JonathanTSilva/scriptize
edit_uri: /tree/main/docs
theme:
name: material
language: en
logo: assets/img/scriptize_single_logo.png
favicon: assets/img/scriptize_single_logo.png
markdown_extensions:
- attr_list
extra_css:
- assets/stylesheets/extra.css
plugins:
- mkdocstrings:
handlers:
python:
paths: [
scriptize/assets/python/utilities,
scriptize/logger,
scriptize/core,
]
nav:
- 'Home': index.md
- 'Test Report': 'test-report/allure/'
- 'API Reference':
- 'Bash Utilities':
- 'Alerts': api/bash/alerts.md
- 'Arrays': api/bash/arrays.md
- 'Checks': api/bash/checks.md
- 'Dates': api/bash/dates.md
- 'Debug': api/bash/debug.md
- 'Files': api/bash/files.md
- 'macOS': api/bash/macOS.md
- 'Miscellaneous': api/bash/misc.md
- 'Services': api/bash/services.md
- 'Strings': api/bash/strings.md
- 'Template Utilities': api/bash/template_utils.md
- 'Python Utilities':
- 'Checks': api/python/checks.md
- 'CLI': api/python/cli.md
- 'Files': api/python/files.md
- 'Log Manager': api/python/log_manager.md
- 'Shell': api/python/shell.md
- 'Strings': api/python/strings.md