-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmkdocs.yml
75 lines (65 loc) · 1.83 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
site_name: Math Wiki
down_extensions:
- pymdownx.arithmatex:
generic: true
repo_name: M-Wiki/Math-Wiki
repo_url: 'https://github.com/M-Wiki/Math-Wiki'
nav:
- Getting Started: index.md
- 编辑指南: how_to_edit.md
- 数论:
- 数论基础: number-theory/basic.md
- 排列组合: number-theory/permutation_combination.md
- 'RSA 加密算法': number-theory/rsa.md
- 微积分:
- 微积分基础: calculus/index.md
- 杂项:
- 求和符号和连乘符号: others/sigma_prod.md
- '自然常数 e': others/natural_constant.md
- '复数的基本知识': others/imagine_number.md
plugins:
- git-revision-date-localized:
type: iso_datetime
# enable_creation_date: true
# fallback_to_build_date: true
- search:
lang: zh
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
edit_uri: 'https://m-wiki.github.io/Math-Wiki/how_to_edit/?ref='
theme:
features:
- content.action.edit
- search.suggest
- search.share
icon:
edit: material/pencil
repo: fontawesome/brands/git-alt
name: material
language: 'zh'
custom_dir: overrides
font:
code: 'Fira Mono'
text: 'Fira Sans'
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode