-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
165 lines (156 loc) · 4.27 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
site_name: camlhmp
site_author: Robert A. Petit III
site_description: Classification through yAML Heuristic Mapping Protocol
copyright: >
Copyright © 2024-2024 Robert A. Petit III. All rights reserved. <a href="#__consent">Change Cookie Settings</a>
site_url: https://rpetit3.github.io/camlhmp/
repo_url: https://github.com/rpetit3/camlhmp
dev_addr: 0.0.0.0:8000
theme:
name: material
custom_dir: overrides
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: 'Ubuntu'
code: 'Ubuntu Mono'
features:
- announce.dismiss
- content.action.edit
- content.code.copy
- navigation.footer
- navigation.instant
- navigation.instant.prefetch
- navigation.tabs
- navigation.tabs.sticky
- navigation.tracking
- navigation.top
plugins:
- privacy
- search:
lang: en
- social:
enabled: true
cache: true
cards: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [camlhmp]
options:
heading_level: 3
show_root_heading: true
show_root_toc_entry: false
show_source: true
show_symbol_type_heading: false
extra:
analytics:
provider: google
property: G-CE4JZPXDE8
social:
- icon: fontawesome/brands/github
link: https://github.com/rpetit3
- icon: fontawesome/brands/twitter
link: https://twitter.com/rpetit3
version:
provider: mike
consent:
title: Cookie Consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
extra_css:
- custom/magnific-popup.css
- custom/extra.css
extra_javascript:
- custom/fontawesome.js
- custom/jquery.min.js
- custom/jquery.magnific-popup.min.js
- custom/extra.js
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid-experimental
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- 'camlhmp':
- 'Introduction': 'index.md'
- 'Installation': 'installation.md'
- 'Changelog': 'CHANGELOG.md'
- 'Available Tools': 'available-tools.md'
- 'Schema': 'schema.md'
- 'CLI':
- 'Overview': 'cli/index.md'
- 'BLAST':
- 'blast-alleles': 'cli/blast/camlhmp-blast-alleles.md'
- 'blast-regions': 'cli/blast/camlhmp-blast-regions.md'
- 'blast-targets': 'cli/blast/camlhmp-blast-targets.md'
- 'blast-thresholds': 'cli/blast/camlhmp-blast-thresholds.md'
- 'Utility':
- 'camlhmp-extract': 'cli/camlhmp-extract.md'
- 'API':
- 'Overview': 'api/index.md'
- 'Engines':
- "BLAST": 'api/engines/blast.md'
- 'Framework': 'api/framework.md'
- 'Parsers':
- "BLAST": 'api/parsers/blast.md'
- 'Utils': 'api/utils.md'
- "About":
- "About camlhmp": "about.md"