-
-
Notifications
You must be signed in to change notification settings - Fork 385
/
mkdocs.yml
119 lines (112 loc) · 4.48 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
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/mkdocs/mkdocs.yml
# See: https://www.mkdocs.org/user-guide/configuration/
site_name: Arduino CLI
site_description: Arduino Command Line Interface
site_url: https://arduino.github.io/arduino-cli/
repo_name: arduino/arduino-cli
repo_url: https://github.com/arduino/arduino-cli
edit_uri: blob/master/docs/
copyright: Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
theme:
name: material
logo: img/icon_mac_light.png
palette:
primary: teal
accent: orange
markdown_extensions:
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.toc:
permalink: true
- mdx_truly_sane_lists:
nested_indent: 2
truly_sane: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
emoji_index: !!python/name:pymdownx.emoji.twemoji
- pymdownx.magiclink:
repo: arduino-cli
repo_url_shorthand: true
user: arduino
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- Home: index.md
- installation.md
- UPGRADING.md
- getting-started.md
- command-line-completion.md
- CONTRIBUTING.md
- FAQ.md
- Command reference:
- arduino-cli: commands/arduino-cli.md
- board: commands/arduino-cli_board.md
- board attach: commands/arduino-cli_board_attach.md
- board details: commands/arduino-cli_board_details.md
- board list: commands/arduino-cli_board_list.md
- board listall: commands/arduino-cli_board_listall.md
- board search: commands/arduino-cli_board_search.md
- burn-bootloader: commands/arduino-cli_burn-bootloader.md
- cache: commands/arduino-cli_cache.md
- cache clean: commands/arduino-cli_cache_clean.md
- compile: commands/arduino-cli_compile.md
- completion: commands/arduino-cli_completion.md
- config: commands/arduino-cli_config.md
- config dump: commands/arduino-cli_config_dump.md
- config init: commands/arduino-cli_config_init.md
- config add: commands/arduino-cli_config_add.md
- config delete: commands/arduino-cli_config_delete.md
- config remove: commands/arduino-cli_config_remove.md
- config set: commands/arduino-cli_config_set.md
- core: commands/arduino-cli_core.md
- core download: commands/arduino-cli_core_download.md
- core install: commands/arduino-cli_core_install.md
- core list: commands/arduino-cli_core_list.md
- core search: commands/arduino-cli_core_search.md
- core uninstall: commands/arduino-cli_core_uninstall.md
- core update-index: commands/arduino-cli_core_update-index.md
- core upgrade: commands/arduino-cli_core_upgrade.md
- daemon: commands/arduino-cli_daemon.md
- debug: commands/arduino-cli_debug.md
- lib: commands/arduino-cli_lib.md
- lib deps: commands/arduino-cli_lib_deps.md
- lib download: commands/arduino-cli_lib_download.md
- lib examples: commands/arduino-cli_lib_examples.md
- lib install: commands/arduino-cli_lib_install.md
- lib list: commands/arduino-cli_lib_list.md
- lib search: commands/arduino-cli_lib_search.md
- lib uninstall: commands/arduino-cli_lib_uninstall.md
- lib update-index: commands/arduino-cli_lib_update-index.md
- lib upgrade: commands/arduino-cli_lib_upgrade.md
- monitor: commands/arduino-cli_monitor.md
- outdated: commands/arduino-cli_outdated.md
- sketch: commands/arduino-cli_sketch.md
- sketch archive: commands/arduino-cli_sketch_archive.md
- sketch new: commands/arduino-cli_sketch_new.md
- update: commands/arduino-cli_update.md
- upgrade: commands/arduino-cli_upgrade.md
- upload: commands/arduino-cli_upload.md
- version: commands/arduino-cli_version.md
- gRPC reference:
- commands: rpc/commands.md
- configuration.md
- Integration options: integration-options.md
- sketch-build-process.md
- sketch-specification.md
- sketch-project-file.md
- library-specification.md
- platform-specification.md
- Pluggable discovery specification: pluggable-discovery-specification.md
- Pluggable monitor specification: pluggable-monitor-specification.md
- Package index specification: package_index_json-specification.md
- Guides:
- Secure boot: guides/secure-boot.md
- Backward compatibility policy: versioning.md
extra:
version:
provider: mike