-
Notifications
You must be signed in to change notification settings - Fork 49
/
mkdocs.yml
71 lines (67 loc) · 1.89 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
site_name: pyCirclize
site_description: Circular visualization in Python
site_author: moshi4
repo_name: moshi4/pyCirclize
repo_url: https://github.com/moshi4/pyCirclize
edit_uri: ""
use_directory_urls: true
watch:
- src
nav:
- Home: index.md
- Getting Started: getting_started.ipynb
- Plot API Example: plot_api_example.ipynb
- Chord Diagram: chord_diagram.ipynb
- Radar Chart: radar_chart.ipynb
- Circos Plot (Genomics): circos_plot.ipynb
- Phylogenetic Tree: phylogenetic_tree.ipynb
- Plot Tips: plot_tips.ipynb
- API Docs:
- Circos: api-docs/circos.md
- Sector: api-docs/sector.md
- Track: api-docs/track.md
- TreeViz: api-docs/treeviz.md
- utils: api-docs/utils.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