-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
97 lines (89 loc) · 2.58 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
site_name: dyce
site_description: Simple Python tools for dice-based probabilities
site_url: https://posita.github.io/dyce/
site_author: Matt Bogosian
copyright: <i>Copyright and other protections apply.
Please see the accompanying <tt>LICENSE</tt> file for rights and restrictions governing use of this software.
All rights not expressly waived or licensed are reserved.
If that file is missing or appears to be modified from its original, then please contact the author before viewing or using this software in any capacity.</i>
repo_url: https://github.com/posita/dyce
nav:
- Introduction: index.md
- Countin’ with histograms and pools: countin.md
- Rollin’ with rollers and rolls: rollin.md
- Applications and translations: translations.md
- Release notes: notes.md
- Contributing: contrib.md
- License: license.md
- API:
- <tt>dyce</tt>: dyce.md
- <tt>dyce.evaluation</tt>: dyce.evaluation.md
- <tt>dyce.h</tt>: dyce.h.md
- <tt>dyce.r</tt>: dyce.r.md
# See:
# * <https://squidfunk.github.io/mkdocs-material/reference/admonitions/>, etc.
# * <https://mkdocstrings.github.io/>
# * <https://www.mkdocs.org/>
extra:
version:
provider: mike
__vers_str__: 0.6.2
extra_javascript:
- js/site.js
# ---- BEGIN MathJax config ----
- js/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# ----- END MathJax config -----
markdown_extensions:
- admonition
- def_list
- footnotes
# ---- BEGIN MathJax config ----
- pymdownx.arithmatex:
generic: true
# ----- END MathJax config -----
- pymdownx.emoji
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde
plugins:
- exclude:
# TODO(posita): See <https://github.com/apenwarr/mkdocs-exclude/pull/9>
# gitignore: true
glob:
- "*.py"
- "Makefile"
- "notebooks/*"
- macros
- mike:
version_selector: true
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_if_no_docstring: true
show_root_full_path: false
show_signature_annotations: true
- search
theme:
name: "material" # required by arithmatex and mkdocstrings
features:
- content.code.annotate
- content.tabs.link
- navigation.foreach
- navigation.sections
- toc.integrate
palette:
- scheme: default
primary: green
accent: green
watch:
- dyce