-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
92 lines (86 loc) · 2.46 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
site_name: "tea-tasting: statistical analysis of A/B tests"
site_url: https://tea-tasting.e10v.me/
site_description: A Python package for the statistical analysis of A/B tests
site_author: Evgeny Ivanov
copyright: © Evgeny Ivanov <br> The logo is designed by <a href="http://www.freepik.com/">Freepik</a>
repo_name: e10v/tea-tasting
repo_url: https://github.com/e10v/tea-tasting
nav:
- Overview: index.md
- User guide: user-guide.md
- Data backends: data-backends.md
- Power analysis: power-analysis.md
- Multiple testing: multiple-testing.md
- Custom metrics: custom-metrics.md
- API reference:
- API reference: api/index.md
- Metrics:
- Metrics: api/metrics/index.md
- Base: api/metrics/base.md
- Mean: api/metrics/mean.md
- Proportion: api/metrics/proportion.md
- Resampling: api/metrics/resampling.md
- Experiment: api/experiment.md
- Multiplicity: api/multiplicity.md
- Datasets: api/datasets.md
- Global configuration: api/config.md
- Aggregates: api/aggr.md
- Utilities: api/utils.md
theme:
name: material
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep orange
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to system preference
logo: assets/tea-cup-white.svg
favicon: assets/tea-cup-white-on-black.svg
icon:
repo: fontawesome/brands/github
features:
- content.code.copy
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.top
- navigation.tracking
- search.highlight
- search.suggest
- toc.follow
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
options:
filters: ["!^_"]
heading_level: 1
inherited_members: true
merge_init_into_class: true
show_root_heading: true
- search
markdown_extensions:
- _strip_doctest_artifacts
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: "#"
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/override-copy.js