Create mkdocs.yml
taylor_socfortress committed
Jul 11, 2023 at 13:05 UTC
9c13346ce0672d750165a52d9bd968055644b1ac
1 file changed
+61
backend/docs/mkdocs.yml
new
+61
@@ -0,0 +1,61 @@
1
+site_name: SOCFortress CoPilot
2
+theme:
3
+ name: material
4
+ features:
5
+ - navigation.tabs
6
+ - navigation.sections
7
+ - toc.integrate
8
+ - navigation.top
9
+ - search.suggest
10
+ - search.highlight
11
+ - content.tabs.link
12
+ - content.code.annotation
13
+ - content.code.copy
14
+
15
+ language: en
16
+ palette:
17
+ - scheme: default
18
+ toggle:
19
+ icon: material/toggle-switch-off-outline
20
+ name: Switch to dark mode
21
+ primary: teal
22
+ accent: purple
23
+ - scheme: slate
24
+ toggle:
25
+ icon: material/toggle-switch
26
+ name: Switch to light mode
27
+ primary: teal
28
+ accent: lime
29
+
30
+plugins:
31
+ - mkdocstrings:
32
+ - autorefs
33
+
34
+nav:
35
+ - Home: index.md
36
+ - Connectors: connectors.md
37
+ - Agents: agents.md
38
+ - Alerts: alerts.md
39
+ - Artifacts: artifacts.md
40
+ - Cases: cases.md
41
+ - Graylog: graylog.md
42
+
43
+markdown_extensions:
44
+ - pymdownx.highlight:
45
+ anchor_linenums: true
46
+ - pymdownx.inlinehilite
47
+ - pymdownx.snippets
48
+ - admonition
49
+ - pymdownx.arithmatex:
50
+ generic: true
51
+ - footnotes
52
+ - pymdownx.details
53
+ - pymdownx.superfences
54
+ - pymdownx.mark
55
+ - attr_list
56
+ - pymdownx.emoji:
57
+ emoji_index: !!python/name:materialx.emoji.twemoji
58
+ emoji_generator: !!python/name:materialx.emoji.to_svg
59
+
60
+copyright: |
61
+ © 2023 <a href="https://github.com/socfortress/CoPilot" target="_blank" rel="noopener">SOCFortress CoPilot</a>