-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
124 lines (116 loc) · 2.82 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
115
116
117
118
119
120
121
122
123
124
site_name: "NorMI"
site_description: "Normalized mutual information estimator"
site_url: "https://moldyn.github.io/normi"
repo_url: "https://github.com/moldyn/normi"
edit_uri: "blob/main/docs/"
repo_name: "moldyn/normi"
site_dir: "site"
copyright: Copyright © 2023 Daniel Nagel
watch: [src/normi]
nav:
- Home:
- Overview: index.md
- Changelog: changelog.md
- License: license.md
- FAQ: faq.md
- Code Reference: reference/
- Development:
- Contributing: contributing.md
- Maintenance: maintenance.md
- MolDyn Freiburg: https://moldyn.uni-freiburg.de/
theme:
name: material
favicon: icon.png
logo_slate_mode: icon.png
logo_default_mode: icon.png
custom_dir: docs/overrides
features:
- content.code.annotate
- navigation.tabs
- navigation.top
font:
text: Source Sans Pro
headline: Playfair Display
code: Source Code Pro
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
toggle:
icon: material/weather-night
name: Switch to light mode
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- mkdocs-click
- md_in_html
- toc:
permalink: true
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
plugins:
- section-index
- search
- gen-files:
scripts:
- docs/gen_ref_nav.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
paths: [src]
import:
- https://numpy.org/doc/stable/objects.inv
options:
members_order: "source"
docstring_style: "numpy"
docstring_section_style: "list"
merge_init_into_class: true
filters: ["!^_"]
extra_css:
- css/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/solid/globe
link: https://www.moldyn.uni-freiburg.de
- icon: fontawesome/brands/github
link: https://github.com/moldyn
- icon: fontawesome/brands/twitter
link: https://twitter.com/MolDynFR