-
Notifications
You must be signed in to change notification settings - Fork 23
/
mkdocs.yml
85 lines (76 loc) · 2.43 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
# 站点信息
site_name: MicroBoot # 文档站点名称
site_description: A sample documentation site # 文档站点描述
site_author: kk # 文档作者
# 导航栏
nav:
- 简介: index.md
- 快速移植:
- 基于 CMSIS-PACK 移植 : quick-start/cmsis-pack.md
- 基于 RT-Thread 软件包移植 : quick-start/RT-Thread.md
- 基于源码移植: quick-start/quick-start.md
- 使用指南:
- 配置: usage-guide/config.md
- 必备知识:
- 变参函数和可变参数宏: utilities/ParameterMacro.md
- Flash下载算法制作: utilities/FLM.md
- 组件介绍:
- queue: components/queue/queue.md
- 信号槽: components/signals_slots/signals_slots.md
- 发布订阅: components/subscribe_publish/subscribe_publish.md
- 消息地图: components/msg_map/msg_map.md
- shell: components/shell/shell.md
- ymodem: components/ymodem/ymodem.md
- BootLoader: components/bootloader/bootloader.mds
- FlashBlob: components/flash_blob/flash_blob.md
- 第三方库:
- PLOOC: 3rd-party/plooc/plooc.md
- FSM: 3rd-party/fsm/fsm.md
- Arm-2D: 3rd-party/Arm-2D/arm_2d.md
- 参与项目:
- 如何贡献代码: contribute/code.md
- 如何贡献文档: contribute/document.md
- 开发神器:
- microlink: tools/microlink/microlink.md
- RTTView: tools/RTTView/RTTView.md
- 私人订制:
- BootLoader: bootloader/BootLoader.md
- About:
- Overview: about/about.md
- Team: about/team.md
# 主题配置
theme:
name: material # 使用 Material 主题
features:
- navigation.tabs # 启用选项卡导航
- navigation.indexes # 启用索引导航
palette:
scheme: default
primary: indigo
accent: indigo
extra_css:
- css/custom.css
extra_javascript:
- https://fonts.googleapis.com/css?family=Fira+Code&display=swap
plugins:
- search
- awesome-pages
markdown_extensions:
- toc:
permalink: true
- tables
- footnotes
- def_list
- admonition
- codehilite:
linenums: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.critic
- pymdownx.tasklist:
custom_checkbox: true
# GitHub 仓库配置
repo_name: Aladdin-Wang/MicroBoot # GitHub 用户名和仓库名称
repo_url: https://github.com/Aladdin-Wang/MicroBoot # GitHub 仓库的 URL
edit_uri: "" # 如果您的文档在仓库的根目录,可以留空