-
Notifications
You must be signed in to change notification settings - Fork 144
/
mkdocs.yml
84 lines (84 loc) · 2.23 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
site_name: thehive4py
repo_name: TheHive-Project/TheHive4py
repo_url: https://github.com/TheHive-Project/TheHive4py
nav:
- TheHive4py: index.md
- Examples:
- Client: examples/client.md
- Alert: examples/alert.md
- Reference: reference.md
theme:
name: material
favicon: img/strangebee.png
logo: img/strangebee.png
features:
- content.code.copy
- navigation.footer
- navigation.tabs
- navigation.tabs.sticky
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
scheme: default
primary: custom
accent: custom
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: custom
accent: custom
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
extra_css:
- styles/extra.css
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.snippets
- pymdownx.superfences
extra:
social:
- icon: simple/discord
link: https://discord.com/invite/XhxG3vzM44
name: Discord
- icon: simple/github
link: https://github.com/TheHive-Project/TheHive4py
name: GitHub
- icon: simple/python
link: https://pypi.org/project/thehive4py/
name: PyPI
version:
provider: mike
plugins:
- autorefs
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://requests.readthedocs.io/en/stable/objects.inv
options:
show_root_heading: true
show_root_full_path: true
merge_init_into_class: true
show_source: true
show_if_no_docstring: true
members_order: source
docstring_section_style: table
signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
watch:
- examples
- thehive4py