forked from slaf-project/slaf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
200 lines (183 loc) · 5.24 KB
/
mkdocs.yml
File metadata and controls
200 lines (183 loc) · 5.24 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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
site_name: SLAF Documentation
site_description: Sparse Lazy Array Format - High-performance single-cell data storage and analysis
site_author: Pavan Ramkumar
site_url: https://slaf-project.github.io/slaf/
# Repository
repo_name: slaf-project/slaf
repo_url: https://github.com/slaf-project/slaf
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2025 Pavan Ramkumar
# Theme
theme:
name: material
logo: assets/slaf-icon-transparent-dark-mono.svg
favicon: assets/slaf-icon-transparent-dark-mono.svg
# Color palette
palette:
# Light mode (default)
- scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to dark mode
# Dark mode
- scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-7
name: Switch to light mode
# Features
features:
- navigation.sections
- content.code.copy
# Social
social:
- icon: fontawesome/brands/github
link: https://github.com/slaf-project/slaf
# Plugins
plugins:
- search
- macros
- git-revision-date-localized:
enable_creation_date: true
- git-authors:
show_email_address: false
- minify:
minify_html: true
- autorefs
- mkdocstrings:
handlers:
python:
paths: [slaf]
options:
# Core display options
show_source: true
show_root_heading: true
show_signature_annotations: true
show_category_heading: true
heading_level: 2
show_if_no_docstring: false
members_order: source
show_bases: true
show_root_toc_entry: true
docstring_style: google
# Enhanced rendering for better examples
show_examples: true
# Visual separation and organization
show_signature_annotations: true
show_source: true
show_root_heading: true
show_category_heading: true
heading_level: 2
show_if_no_docstring: false
members_order: source
show_bases: true
show_root_toc_entry: true
# Filter out dunder methods except __init__
filters: ["!^_", "!^__", "__init__"]
# Group methods by type for better organization
members_order: ["source", "alphabetical"]
- awesome-pages
- section-index
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:material.extensions.emoji.to_svg
emoji_index: !!python/name:material.extensions.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Extra CSS and JS
extra_css:
- stylesheets/extra.css
- stylesheets/logo-theme.css
extra_javascript:
- javascripts/mathjax.js
- javascripts/theme-reset.js
- javascripts/copy-enhancement.js
- javascripts/theme-aware-assets.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Navigation
nav:
- Home: index.md
- Quick Start: getting-started/quickstart.md
- User Guide:
- How SLAF Works: user-guide/how-slaf-works.md
- Migrating to SLAF: user-guide/migrating-to-slaf.md
- Examples:
- Getting Started: examples/getting-started.md
- Lazy Processing: examples/lazy-processing.md
- ML Training: examples/ml-training.md
- SQL Queries: examples/sql-queries.md
- Benchmarks:
- Overview: benchmarks/index.md
- For Bioinformaticians: benchmarks/bioinformatics_benchmarks.md
- For ML Engineers: benchmarks/ml_benchmarks.md
- API Reference:
- Core: api/core.md
- Data: api/data.md
- Integrations: api/integrations.md
- ML: api/ml.md
- Development:
- For Contributors: development/contributing.md
- For Maintainers: development/maintaining.md
- Benchmarks: development/benchmarks.md
- Blog:
- Blog Home: blog/index.md
- Introducing SLAF: blog/introducing-slaf.md
- Blazing Fast Dataloaders: blog/blazing-fast-dataloaders.md
- Mixture of Scanners: blog/blazing-fast-dataloaders-2.md
# Extra
extra:
analytics:
provider: google
property: !ENV GOOGLE_ANALYTICS_KEY
social:
- icon: fontawesome/brands/github
link: https://github.com/slaf-project/slaf
generator: false
# Validation
validation:
nav:
omitted_files: ignore
not_found: warn