-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
136 lines (126 loc) · 4.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
site_name: jobq Documentation
site_dir: public/docs
repo_url: https://github.com/aai-institute/jobq
edit_uri: edit/main/docs/
# To validate all internal links exist. Does not work in ipynb files
strict: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
copyright: Copyright © 2024 <a href="https://appliedai-institute.de" target="_blank" rel="noopener">appliedAI Institute for Europe gGmbH</a><br>The appliedAI Institute for Europe gGmbH is supported by the KI-Stiftung Heilbronn gGmbH.
nav:
- Home: index.md
- Quickstart: quickstart.md
- Concepts: concepts/
- How-to Guides: guide/
- API Reference: reference/
- CLI User Guide: cli.md
- Contributing: CONTRIBUTING.md
# Rebuild docs in `mkdocs serve` for changes in source code
watch:
- client/src/
plugins:
- callouts
- gen-files:
scripts:
- docs/_scripts/gen_api_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
paths: [client/src]
options:
docstring_style: numpy
docstring_section_style: spacy
line_length: 100
show_bases: true
members_order: source
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
merge_init_into_class: false
filters: ["!^_{1,2}"]
- mike:
canonical_version: latest
- privacy
- search:
- include_dir_to_nav:
file_pattern: '.*\.(md|ipynb)$'
markdown_extensions:
# python-markdown extensions: https://python-markdown.github.io/extensions/
- admonition
- attr_list
- md_in_html
- sane_lists
- toc:
permalink: true
toc_depth: 3
# pymdown-extensions: https://facelessuser.github.io/pymdown-extensions/
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
url_download: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
theme:
name: "material"
custom_dir: docs/_theme_overrides
logo: _images/aai-logo-cropped.png
favicon: _images/favicon.png
font:
text: IBM Plex Sans # Arial replacement
code: Source Code Pro
icon:
logo: _images/favicon.png
repo: fontawesome/brands/github
features:
- content.tabs.link
- content.code.copy
- content.code.annotate
- content.action.edit
palette:
# Palette toggle for light mode
- scheme: aai-light
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra:
copyright_link: https://appliedai-institute.de
generator: false
pre_release: !ENV [DOCS_PRERELEASE, false]
version:
provider: mike
default: latest
social:
- icon: fontawesome/brands/github
link: https://github.com/aai-institute/jobq
- icon: fontawesome/brands/python
link: https://pypi.org/project/aai-jobq
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/appliedai-institute-for-europe-ggmbh/
- icon: octicons/law-16
link: https://appliedai-institute.de/impressum
name: Impressum / Imprint
extra_css:
- _styles/extra.css
- _styles/theme.css