-
Notifications
You must be signed in to change notification settings - Fork 9
/
mkdocs.yml
executable file
·98 lines (90 loc) · 2.36 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
site_name: WaferMap
site_description: "wfmap Documentation"
repo_url: https://github.com/xlhaw/wfmap/
site_url: https://www.wfmap.ml/
edit_uri: ./edit/master/docs
repo_name: "xlhaw/wfmap"
copyright: Copyright © 2017 - 2022 Leon Xiao
site_author: Leon Xiao
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
nav:
- Getting Started: index.md
- Data Preparation: data.md
- Example Gallery: generated/gallery
- GUI Application: gui.md
- API Reference: docstrings.md
- ChangeLogs: changelog.md
- Repository: "https://github.com/xlhaw/wfmap/"
extra:
analytics:
provider: google
property: G-8FQ3JVBZ1X
social:
- icon: fontawesome/brands/github
link: https://github.com/xlhaw
- icon: fontawesome/brands/twitter
link: https://twitter.com/xlhaw
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/xlhaw
- icon: fontawesome/brands/instagram
link: https://instagram.com/xlhaw
- icon: fontawesome/solid/paper-plane
link: mailto:<i@xlhaw.com>
markdown_extensions:
- smarty
- toc:
permalink: True
- sane_lists
- attr_list
- codehilite
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.emoji
use_directory_urls: True
plugins:
- search
- mkdocstrings:
enable_inventory: false
custom_templates: templates
default_handler: python
handlers:
python:
options:
show_source: false
watch:
- wfmap
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
- gallery:
conf_script: docs/gallery_conf.py
examples_dirs:
- docs/examples
gallery_dirs:
- docs/generated/gallery
backreferences_dir: docs/generated/backreferences
show_memory: False
extra_javascript:
- https://unpkg.com/mermaid/dist/mermaid.min.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- css/mkdocstrings.css