-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
89 lines (80 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
85
86
87
88
89
# CUSTOMISE:
site_name: iimrp
repo_url: https://github.com/Intelligent-Instruments-Lab/iimrp
repo_name: iil/iimrp
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
- include-markdown
- autorefs
- gen-files:
scripts:
- scripts/gen_ref_pages.py
# ONLY CUSTOMISE IF NEEDED:
theme:
name: "material"
logo: assets/logo/iil_logo_black.svg
favicon: assets/favicon/favicon.ico
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: yellow
accent: blue grey
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue grey
accent: yellow
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.path
- navigation.top
- toc.follow
- content.code.copy
- content.code.select
copyright: ©️ Intelligent Instrumets Lab
extra:
generator: false
social:
- icon: material/link
link: https://iil.is
name: Intelligent Instrumets Lab
- icon: material/email-outline
link: mailto:iil@lhi.is
- icon: fontawesome/brands/facebook
link: https://facebook.com/intelligentinstrumentslab
- icon: fontawesome/brands/instagram
link: https://instagram.com/intelligentinstruments
- icon: fontawesome/brands/x-twitter
link: https://x.com/_iil_is
- icon: fontawesome/brands/youtube
link: https://youtube.com/@IntelligentInstruments
- icon: fontawesome/brands/discord
link: https://discord.gg/fY9GYMebtJ
- icon: fontawesome/brands/github
link: https://github.com/intelligent-instruments-lab
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/intelligent-instruments-lab
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- stylesheets/extra.css