-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathzensical-zh.toml
More file actions
87 lines (81 loc) · 2.33 KB
/
Copy pathzensical-zh.toml
File metadata and controls
87 lines (81 loc) · 2.33 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
79
80
81
82
83
84
85
86
87
[project]
site_name = "wavekit"
site_url = "https://cxzzzz.github.io/wavekit/zh/"
site_description = "使用 Python 进行高层次数字波形分析"
repo_url = "https://github.com/cxzzzz/wavekit"
repo_name = "cxzzzz/wavekit"
docs_dir = "docs/zh"
site_dir = "site/zh"
nav = [
{ "首页" = "index.md" },
{ "快速开始" = [
{ "安装" = "getting-started/installation.md" },
{ "第一个波形" = "getting-started/first-waveform.md" },
] },
{ "指南" = [
{ "Reader" = "guides/reader.md" },
{ "信号查询" = "guides/signal-query.md" },
{ "波形分析" = "guides/waveform-analysis.md" },
{ "模式匹配" = "guides/pattern-matching.md" },
] },
{ "参考" = [
{ "API 参考" = "reference/api.md" },
] },
{ "示例" = "examples.md" },
{ "在线体验" = "https://cxzzzz.github.io/wavekit-playground/" },
{ "参与贡献" = "contributing.md" },
]
[project.extra]
alternate = [
{ name = "English", link = "https://cxzzzz.github.io/wavekit/", lang = "en" },
{ name = "中文", link = "https://cxzzzz.github.io/wavekit/zh/", lang = "zh" },
]
[project.theme]
language = "zh"
custom_dir = "docs/overrides"
logo = "images/logo.svg"
favicon = "images/favicon.svg"
font.text = "Inter"
font.code = "Hack"
features = [
"content.code.copy",
"navigation.footer",
"navigation.path",
"navigation.sections",
"navigation.top",
"search.highlight",
]
[[project.theme.palette]]
scheme = "default"
primary = "teal"
accent = "cyan"
toggle.icon = "lucide/sun"
toggle.name = "切换到深色模式"
[[project.theme.palette]]
scheme = "slate"
primary = "teal"
accent = "cyan"
toggle.icon = "lucide/moon"
toggle.name = "切换到浅色模式"
[project.markdown_extensions]
admonition = {}
attr_list = {}
def_list = {}
footnotes = {}
md_in_html = {}
toc.permalink = true
pymdownx.details = {}
pymdownx.highlight = { anchor_linenums = true, line_spans = "__span", pygments_lang_class = true }
pymdownx.superfences = {}
pymdownx.tabbed = { alternate_style = true }
pymdownx.tasklist = { custom_checkbox = true }
[project.plugins.mkdocstrings.handlers.python]
paths = ["src"]
options.docstring_style = "numpy"
options.docstring_section_style = "table"
options.filters = ["!^_"]
options.show_source = false
options.inherited_members = true
options.show_root_heading = true
options.show_root_full_path = false
options.merge_init_into_class = true