-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
171 lines (162 loc) · 4.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
---
# Project Information
site_name: "OMEGA-Py"
site_url: "https://astcherbinine.github.io/omegapy"
site_author: "Aurélien Stcherbinine"
site_description: "OMEGA-Py: Python tools for OMEGA data"
# Repository information
repo_name: "AStcherbinine/omegapy"
repo_url: "https://github.com/AStcherbinine/omegapy"
edit_uri: "edit/main/docs/"
# Copyright
copyright: Copyright © 2024 Aurélien Stcherbinine
# Configuration
theme:
name: material
icon:
repo: fontawesome/brands/github
view: material/eye
logo: img/logo_omegapy.svg
favicon: img/favicon_omegapy.ico
palette:
- scheme: default
toggle:
icon: material/brightness-7
name: Dark mode
primary: red
accent: orange
- scheme: slate
toggle:
icon: material/brightness-4
name: Light mode
primary: red
accent: orange
features:
- navigation.instant
#- navigation.tabs
#- navigation.tabs.sticky
#- navigation.sections
#- navigation.path
#- navigation.expand
- navigation.indexes
- toc.integrate
- toc.follow
- content.code.copy
#- content.code.select
- content.code.annotate
#- content.tabs.link
language: en
plugins:
- search
- autorefs
- gen-files:
scripts:
- docs/gen_api_pages.py
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [omegapy]
options:
docstring_style: numpy
docstring_section_style: table
#docstring_section_style: list
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
show_object_full_path: true
members_order: alphabetical
#members_order: source
#separate_signature: true
- literate-nav:
nav_file: SUMMARY.md
markdown_extensions:
# Code highlighting (with Pygments)
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
use_pygments: true
pygments_lang_class: true
- pymdownx.inlinehilite
#- pymdownx.snippets
- pymdownx.snippets:
auto_append:
- docs/abbreviations.md
- pymdownx.superfences
# footnotes
- footnotes
# image support
- attr_list
- md_in_html
# lists
- def_list
#- pymdownx.tasklist:
#custom_checkbox: true
- admonition
- pymdownx.details
#- pymdownx.superfences
# content tabs
#- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.smartsymbols
# Annotations
#- attr_list
#- md_in_html
#- pymdownx.superfences
# Emojis
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# Abbreviations
- abbr
#- attr_list
#- pymdownx.snippets
# Footer
extra:
#history_buttons: false
version: v2.4
#nav_links:
social:
- icon: fontawesome/brands/github
link: https://github.com/AStcherbinine
name: AStcherbinine on GitHub
- icon: fontawesome/brands/twitter
link: https://twitter.com/Astrorelien
name: Astrorelien on Twitter
- icon: fontawesome/brands/researchgate
link: https://www.researchgate.net/profile/Aurelien-Stcherbinine
name: Aurélien Stcherbinine on ResearchGate
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/aurelien-stcherbinine/
name: Aurélien Stcherbinine on LinkedIn
- icon: fontawesome/solid/globe
link: https://aurelien.stcherbinine.net/
name: Aurélien Stcherbinine personal page
# Page tree
nav:
- Home: index.md
#- About: about.md
- Getting started:
- Installation: installation.md
- Configuration: configuration.md
- Basic usage: basic_usage.md
- Tests: tests.md
- User Guide:
- Data importation: data_importation.md
- Data correction: data_correction.md
- Data handling: data_handling.md
- Data visualization: data_visualization.md
#- IDL SOFT10 Readme: SOFT10_readme.txt
- Examples:
- Band depth: example1_band_depth.md
- Overplotting: example2_overplot.md
- Code Reference: reference/
- Community guidelines: community.md
- Litterature: litterature.md
- Credits: credits.md