-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
79 lines (75 loc) · 2.44 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: "Soundscapy"
site_url: https://soundscapy.readthedocs.io/en/latest/
site_dir: site
repo_name: "MitchellAcoustics/Soundscapy"
repo_url: https://github.com/MitchellAcoustics/Soundscapy
copyright: Copyright © 2024 Andrew Mitchell
nav:
- Home: index.md
- About:
- 'License': license.md
- Tutorials:
- tutorials/index.md
- '`Soundscapy` - Quick Start': tutorials/QuickStart.ipynb
- 'How To Analyse and Represent Soundscape Perception': tutorials/HowToAnalyseAndRepresentSoundscapes.ipynb
- 'Using Soundscapy for Binaural Recording Analysis': tutorials/BinauralAnalysis.ipynb
- 'API reference':
- 'Survey Analysis': reference/surveys.md
- 'Plotting': reference/plotting.md
- 'Binaural Analysis': reference/audio.md
- 'Databases': reference/databases.md
- 'News':
- news.md
- 'Changelog': CHANGELOG.md
theme:
name: material
# logo: img/DarkLogo.png
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
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
docstring_section_style: spacy
docstring_style: "numpy"
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
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js