-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
56 lines (56 loc) · 1.53 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
site_name: LibCanComm User Manual
site_description: User Manual for LibCanComm, the library for convenient access to CAN communication, based on the SocketCAN kernel functionality.
repo_url: https://github.com/pragmaticlinuxblog/cancomm
edit_uri: edit/main/docs/
nav:
- Getting started: 'index.md'
- API reference: 'api.md'
- Example: 'example.md'
theme:
name: material
icon:
repo: fontawesome/brands/github
features:
- toc.integrate
- navigation.top
palette:
- scheme: default
primary: blue
accent: red
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: blue
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
plugins:
- search
- mike:
version_selector: true
css_dir: css
javascript_dir: js
canonical_version: null
extra:
version:
provider: mike
generator: false
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/pragmaticlinux
name: PragmaticLinux on Twitter
- icon: fontawesome/brands/pinterest
link: https://www.pinterest.com/pragmaticlinux
name: PragmaticLinux on Pinterest
- icon: fontawesome/brands/github
link: https://github.com/pragmaticlinuxblog
name: PragmaticLinux on GitHub
copyright: Copyright © 2022 by PragmaticLinux
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences