-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
46 lines (44 loc) · 1.08 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
site_name: "Bibat"
site_description: Batteries-included Bayesian analysis template
use_directory_urls: False
theme:
name: "material"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
- navigation.sections
logo: '_static/bibat-light.svg'
favicon: '_static/bibat-light.svg'
repo_url: https://github.com/teddygroves/bibat
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [bibat]
options:
show_bases: false
docstring_style: sphinx
members_order: source
group_by_category: false
filters: ["!^_"]
docstring_options:
warn_unknown_params: false
markdown_extensions:
- admonition
- pymdownx.keys
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed
- attr_list
- md_in_html
nav:
- Home: 'index.md'
- Getting started: 'getting_started.md'
- Working with bibat: 'working_with_bibat.md'
- Vignettes: 'vignettes.md'
- API: 'api.md'
- Contributing: 'contributing.md'
- Accessibility: 'accessibility.md'