-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
79 lines (75 loc) · 2.14 KB
/
mkdocs.yml
File metadata and controls
79 lines (75 loc) · 2.14 KB
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
docs_dir: 'docs'
site_dir: '../../static/patchbox-os/docs'
site_name: Patchbox OS Documentation
site_author: UAB VILNIAUS BLOKAS
use_directory_urls: true
theme:
name: 'material'
favicon: 'favicon.ico'
logo: 'images/logo.svg'
palette:
primary: 'white'
accent: 'white'
custom_dir: 'blokas-docs-theme'
site_url: https://blokas.io/patchbox-os/docs/
extra:
google_tag_manager: "GTM-PML7W8J"
meta_image: 'https://blokas.io/patchbox-os/images/2.png'
ads:
pisound: false
patchboxos: true
midihub: false
modep: false
discourse: 'https://community.blokas.io/'
disqus: 'fake'
social:
- type: 'github'
link: 'https://github.com/BlokasLabs'
- type: 'twitter'
link: 'https://twitter.com/blokaslabs'
- type: 'facebook'
link: 'https://www.facebook.com/blokaslabs/'
repo_name: 'patchbox-os-docs'
repo_url: 'https://github.com/BlokasLabs/patchbox-os-docs/'
markdown_extensions:
- meta
- toc:
permalink: ''
- pymdownx.arithmatex
- pymdownx.betterem
- pymdownx.caret
- pymdownx.critic
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist
- pymdownx.tilde
- footnotes
copyright: '© 2020 VILNIAUS BLOKAS UAB'
nav:
- Introduction: index.md
- Raspberry Pi Essentials:
- Install the Operating System to the SD Card: install-os-to-sd-card.md
- Find the IP Address: find-the-ip-address.md
- Remote Control Options: remote-control.md
- First Run:
- First Run Options: first-run-options.md
- Setup Wizard: setup-wizard.md
- Modules:
- Modules: modules.md
- Creating a Module: creating-a-module.md
- patchbox-module.json reference: patchbox-module-json.md
- Software Guides: software-guides.md
- amidiauto: amidiauto.md
- Troubleshooting: troubleshooting.md
plugins:
- search
- redirects:
redirect_maps:
'GettingStarted.md': 'first-run-options.md'
'Module-Internals.md': 'creating-a-module.md'
'SoftwareGuides.md': 'software-guides.md'