-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
111 lines (106 loc) · 2.93 KB
/
mkdocs.yml
File metadata and controls
111 lines (106 loc) · 2.93 KB
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
site_name: pyperSpec Documentation
site_description: Python package for hyperspectral data analysis
site_url: https://r-hyperspec.github.io/pyperspec/
repo_url: https://github.com/r-hyperspec/pyperspec
repo_name: r-hyperspec/pyperspec
# See https://squidfunk.github.io/mkdocs-material/setup/ for more options
theme:
name: "material"
language: en
features:
- content.code.copy
# - content.tabs.link
- content.code.annotate
# - navigation.tabs
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.preview
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.top
- navigation.tracking
- search.suggest
- toc.follow
palette:
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
# logo: 'logo-white.svg'
favicon: "https://avatars.githubusercontent.com/u/66628186?s=48&v=4"
plugins:
- search
- exclude:
glob:
- plugins/*
- __pycache__/*
- .git/*
- .pytest_cache
# https://mkdocstrings.github.io/python/usage/configuration/general/
- mkdocstrings:
handlers:
python:
options:
heading_level: 2
parameter_headings: true
show_root_heading: true
show_category_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
group_by_category: true
summary: true
docstring_style: numpy
members_order: source
markdown_extensions:
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.pathconverter
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
base_path:
- docs
- README.md
check_paths: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
- tables
watch:
- docs
- pyspc
- README.md
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Quick Start: quickstart.md
- Basic Concepts: concepts.md
- User Guide:
- Data Manipulation: user-guide/manipulation.md
- Hyperspectal images and multidimensional data: user-guide/hyperspectral.md
- Preprocessing: user-guide/preprocessing.md
- Visualization: user-guide/visualization.md
- Import/Export: user-guide/io.md
# - Examples:
# - Basic Usage: examples/basic.md
- API Reference:
- SpectraFrame: api-spectraframe.md
- Peaks: api-peaks.md
- Spikes: api-spikes.md
- Utils: api-utils.md