-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
70 lines (66 loc) · 1.99 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: "Circumplex"
site_url: https://circumplex.readthedocs.io/en/latest/
site_dir: site
repo_name: "MitchellAcoustics/circumplex"
repo_url: https://github.com/MitchellAcoustics/circumplex
copyright: Copyright © 2023 Andrew Mitchell
nav:
- Home: index.md
- About:
- 'License': license.md
- Tutorials:
- tutorials/index.md
- 'Introduction to SSM': tutorials/Intro_to_SSM_Analysis.ipynb
- 'Random Examples': tutorials/Random_exs.ipynb
- 'API reference':
- 'Core functions': reference/api.md
- 'Dealing with results': reference/classes.md
- 'Survey Instruments': reference/instruments.md
- 'Utils': reference/utils.md
- 'News': news.md
theme:
name: material
logo: img/small-logo.png
favicon: img/favicon.ico
features:
- navigation.tabs
- navigation.expand
- navigation.path
- navigation.top
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src.circumplex]
options:
docstring_section_style: spacy
docstring_style: "google"
separate_signature: true
show_if_no_docstring: false
merge_init_into_class: true
show_symbol_type_heading: true # waiting for general release
show_symbol_type_toc: true
- mkdocs-jupyter:
include_source: true
theme: default
# execute: true
markdown_extensions:
- admonition