-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
90 lines (81 loc) · 2.08 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
site_name: Cyber Range Kyoushi Simulation
site_url: https://ait-aecid.github.io/kyoushi-simulation
site_description: State machine based actor simulation framework for cyber range testbeds.
strict: true
theme:
name: 'material'
logo: images/cr_icon.svg
favicon: images/favicon.ico
palette:
scheme: ait
extra_css:
- stylesheets/extra.css
- stylesheets/jquery.fancybox.min.css
# Extra javascript
extra_javascript:
- js/jquery-3.5.1.min.js
- js/jquery.fancybox.min.js
repo_name: kyoushi-simulation
repo_url: https://github.com/ait-aecid/kyoushi-simulation
# need to set manually since we use a private gitlab instance
edit_uri: edit/main/docs/
nav:
- Overview: index.md
- Usage:
- Getting Started: usage/getting_started.md
- Configuration: usage/configuration.md
- Logging: usage/logging.md
- CLI Reference: usage/cli.md
- Examples:
- Traveler: examples/traveler.md
- Decorated Traveler: examples/decorated_traveler.md
- Code Reference:
- Models: reference/model.md
- States: reference/states.md
- Transitions: reference/transitions.md
- State Machine: reference/sm.md
- Utility Functions: reference/util.md
- Exceptions: reference/errors.md
- Configuration: reference/config.md
- Logging: reference/logging.md
- Contributing: contributing.md
- License: license.md
markdown_extensions:
- admonition
- attr_list
- mkdocs-click
- markdown_include.include
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.extra
- pymdownx.details
- toc:
permalink: true
toc_depth: 3
plugins:
- search
- exclude:
glob:
- _build/*
- build/*
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
new_path_syntax: yes
filters:
- "!^_[^_]"
- "!^__class__"
rendering:
show_source: true
watch:
- src/cr_kyoushi/simulation
- README.md
- CONTRIBUTING.md
- macros: