-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (85 loc) · 2.22 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
site_name: Kymata Core
repo_url: https://github.com/kymata-atlas/kymata-core
repo_name: kymata-atlas/kymata-core
site_description: Documentation for the core Kymata Atlas codebase.
theme:
custom_dir: docs/overrides
name: material
icon:
repo: fontawesome/brands/git-alt
logo: assets/images/logo.png
favicon: assets/images/favicon.png
features:
- navigation.tabs
- navigation.sections
- toc.integrate
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
language: en
palette:
- scheme: default
primary: custom
accent: custom
extra_css:
- stylesheets/kymata-documentation.css
nav:
- Home:
- index.md
- Overview:
- overview.md
- Getting Started:
- getting-started.md
- Code Reference:
- reference.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/kymata-atlas
plugins:
- search:
lang: en
- mkdocstrings:
default_handler: python
handlers:
python:
show_root_full_path: true
options:
show_source: false
docstring_style: google
docstring_section_style: list
filters: [ "!^_" ]
heading_level: 2
inherited_members: true
merge_init_into_class: true
parameter_headings: true
separate_signature: true
show_root_heading: true
show_root_toc_entry: true
show_root_full_path: true
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
copyright: |
© 2024 <a href="https://kymata.org" target="_blank" rel="noopener">Kymata.org</a>