-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
207 lines (189 loc) · 5.32 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
site_name: Lmo
site_description: Trimmed L-moments for robust statistics.
site_author: Joren Hammudoglu
site_url: https://jorenham.github.io/Lmo/
repo_name: jorenham/Lmo
repo_url: https://github.com/jorenham/Lmo/
strict: true
nav:
- Overview: index.md
- "Examples":
- "L-moments: Explained visually": examples/visual_intro.ipynb
- Fitting the GEV: examples/lmm.ipynb
- "Reference":
- api/L-moments.md
- api/L-comoments.md
- api/distributions.md
- api/diagnostic.md
- api/pandas.md
- api/low_level.md
- Distributions: distributions.md
- Contributing: contributing.md
theme:
name: material
favicon: img/favicon.ico
logo: img/logo.png
features:
- content.tabs.link
- content.tooltips
- navigation.path
- navigation.indexes
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- toc.follow
# - toc.integrate
font:
text: Fira Sans
code: Fira Mono
palette:
scheme: slate
primary: nose
accent: skin
extra:
analytics:
provider: google
property: G-KH79N7XQCE
social:
- icon: fontawesome/brands/github
link: https://github.com/jorenham/
plugins:
# https://github.com/mkdocstrings/autorefs
- autorefs:
resolve_closest: true
# https://github.com/shyamd/mkdocs-bibtex
- bibtex:
bib_file: docs/bib/refs.bib
bib_dir: docs/bib
bib_by_default: false
# https://github.com/timvink/mkdocs-git-revision-date-localized-plugin
- git-revision-date-localized:
type: iso_date
exclude: ["*.ipynb"]
strict: false
# https://github.com/mondeja/mkdocs-include-markdown-plugin
- include-markdown
# https://github.com/byrnereese/mkdocs-minify-plugin
- minify:
cache_safe: true
minify_css: true
minify_html: true
minify_js: true
js_files:
- scripts/katex.js
css_files:
- styles/theme.css
# https://github.com/danielfrg/mkdocs-jupyter
- mkdocs-jupyter:
include: ["*.ipynb"]
theme: dark
ignore_h1_titles: True
execute: false
allow_errors: false
remove_tag_config:
remove_input_tags:
- hide_code
# https://github.com/mkdocstrings/mkdocstrings
# https://github.com/mkdocstrings/python
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- url: https://docs.python.org/3/objects.inv
- url: https://numpy.org/doc/stable/objects.inv
- url: https://docs.scipy.org/doc/scipy/objects.inv
- url: https://pandas.pydata.org/docs/objects.inv
options:
heading_level: 3
annotations_path: brief
unwrap_annotated: true
docstring_section_style: table
line_length: 88
load_external_modules: true
members_order: source
merge_init_into_class: true
show_bases: true
show_root_heading: true
show_root_full_path: true
show_root_toc_entry: true
show_root_members_full_path: true
show_symbol_type_heading: true
show_symbol_type_toc: false
show_source: false
show_submodules: false
show_docstring_attributes: false
signature_crossrefs: false
docstring_options:
ignore_init_summary: true
trim_doctest_flags: true
# https://squidfunk.github.io/mkdocs-material/plugins/search/
- search
markdown_extensions:
# https://python-markdown.github.io/extensions/
- abbr
- attr_list
- def_list
- footnotes
- md_in_html
- sane_lists
- smarty
- tables
- toc:
permalink: true
# https://facelessuser.github.io/pymdown-extensions/
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.blocks.admonition
- pymdownx.blocks.definition
- pymdownx.blocks.details
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.gemoji
emoji_generator: !!python/name:pymdownx.emoji.to_png
alt: short
options:
attributes:
align: absmiddle
height: "20px"
width: "20px"
image_path: https://github.githubassets.com/images/icons/emoji/unicode/
non_standard_image_path: https://github.githubassets.com/images/icons/emoji/
- pymdownx.extra
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.magiclink:
repo_url_shortener: true
repo_url_shorthand: true
provider: github
user: jorenham
repo: Lmo
- pymdownx.saneheaders
- pymdownx.snippets
- pymdownx.striphtml
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde:
subscript: false
extra_css:
- https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css
- styles/theme.css
- styles/katex.css
extra_javascript:
- https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js
- https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js
- https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/copy-tex.min.js
- scripts/katex.js
watch:
- docs
- lmo