-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
mkdocs.yml
36 lines (36 loc) · 1.21 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
site_name: atomic-operator
site_description: This python package is used to execute Atomic Red Team tests (Atomics) across multiple operating system environments.
docs_dir: docs
theme:
name: 'material'
nav:
- Home: 'index.md'
- Documentation:
- 'Get Atomics': 'atomics.md'
- 'Atomic Operator': 'atomic-operator.md'
- 'Running Tests on Command Line': 'running-tests-command-line.md'
- 'Running Tests via Scripts': 'running-tests-script.md'
- 'Running Tests Remotely On Windows': 'windows-remote.md'
- 'Running Tests via Configuration File': 'atomic-operator-config.md'
- Code Reference:
'Atomic Operator': 'atomic-operator-ref.md'
'Data Models': 'models-ref.md'
'Executors': 'execution-ref.md'
- About:
- 'License': 'LICENSE.md'
- 'Contributing': 'CONTRIBUTING.md'
- 'Changelog': 'CHANGELOG.md'
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
- mike:
version_selector: true
extra:
version:
provider: mike