-
Notifications
You must be signed in to change notification settings - Fork 16
/
mkdocs.yml
60 lines (56 loc) · 1.58 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
site_name: pyMSAviz
site_description: MSA visualization python package for sequence analysis
site_author: moshi4
repo_name: moshi4/pyMSAviz
repo_url: https://github.com/moshi4/pyMSAviz
edit_uri: ""
use_directory_urls: true
nav:
- Home: index.md
- Getting Started: getting_started.ipynb
- Color Schemes: color_schemes.ipynb
- API Docs: api-docs/msaviz.md
- CLI Docs: cli-docs/pymsaviz.md
theme:
name: material # material, readthedocs, mkdocs
features:
- navigation.top
- navigation.expand
# - navigation.tabs
- navigation.tabs.sticky
- navigation.sections
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- admonition
- attr_list
- md_in_html
plugins:
- search
- mkdocs-jupyter:
execute: False
- mkdocstrings:
handlers:
python:
# Reference: https://mkdocstrings.github.io/python/usage/
options:
# Heading options
heading_level: 2
show_root_full_path: False
show_root_heading: True
# Member options
members_order: source # alphabetical, source
# Docstrings options
docstring_style: numpy
docstring_section_style: spacy # table, list, spacy
line_length: 89
merge_init_into_class: True
# Signatures/annotations options
show_signature_annotations: True
separate_signature: True
# Additional options
show_source: False