-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
114 lines (105 loc) · 2.73 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
site_name: NaDGenLib Docs
site_url: https://larry0716.github.io
site_author: Larry Green
strict: false
theme:
name: null
custom_dir: 'mkdocs-material/material'
palette:
- scheme: default
primary: white
accent: red
toggle:
icon: material/brightness-7
name: 切换至夜间模式
- scheme: slate
primary: black
accent: white
toggle:
icon: material/brightness-4
name: 切换至白天模式
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.top
- search.suggest
- search.highlight
- navigation.expand
- search.share
language: zh
icon:
repo: fontawesome/brands/github
font:
text: 'Fira Sans'
code: 'Fira Mono'
edit_uri: edit/main/docs
repo_url: https://github.com/larry0716/NaDGenLib
repo_name: NaDGenLib
copyright: Copyright © 2023 Larry Green
hooks:
- hooks/on_env.py
extra:
generator: true
social:
- icon: fontawesome/brands/github
link: https://github.com/larry0716
- icon: fontawesome/brands/bilibili
link: https://space.bilibili.com/408496889
- icon: fontawesome/solid/paper-plane
link: mailto:<[email protected]>
nav:
- Home:
- 开始: index.md
- NaDGenLib 文档:
- 简介: NaDGenLib-docs/README.md
- 开始: NaDGenLib-docs/startup.md
- 快速上手: NaDGenLib-docs/QuickStart.md
- 随机数:
- Random 类: NaDGenLib-docs/random/Random.md
- irand 函数: NaDGenLib-docs/random/irand.md
- frand 函数: NaDGenLib-docs/random/frand.md
- srand 函数: NaDGenLib-docs/random/srand.md
- 序列与排列:
- Permutation 类: NaDGenLib-docs/seq_per/Permutation.md
- 图论:
- Graph 类: NaDGenLib-docs/graph/Graph.md
markdown_extensions:
- admonition
- def_list
- footnotes
- meta
- toc:
permalink: true
# slugify: !!python/name:pymdownx.slugs.uslugify
- pymdownx.arithmatex:
generic: true
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.snippets
- pymdownx.progressbar
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: math
class: arithmatex
format: !!python/name:pymdownx.arithmatex.fence_mathjax_format
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
extra_javascript:
- 'static/js/math-csr.js?math-csr'
- 'assets/vendor/mathjax/es5/tex-mml-chtml.js?math-csr'
extra_css:
- 'static/css/extra.css?v=14'