-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
50 lines (49 loc) · 1.14 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
site_name: Picea documentation
repo_url: https://github.com/holmrenser/picea
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
rendering:
show_root_heading: yes
show_root_full_path: no
show_category_heading: yes
show_if_no_docstring: yes
show_signature_annotations: yes
watch:
- picea
- mkdocs-jupyter:
execute: True
extra_css:
- css/material.css
markdown_extensions:
- admonition
- codehilite
- toc:
permalink: true
theme:
name: material
features:
- navigation.tabs
- navigation.top
palette:
primary: white
accent: deep orange
font:
text: Helvetica
nav:
- Overview:
- Overview: index.md
- License: LICENSE.md
- Contributing: CONTRIBUTING.md
- Examples:
- Tree: examples/tree.ipynb
- Ontology: examples/ontology.ipynb
- Sequence annotation: examples/sequence_annotation.ipynb
- Sequence interval: examples/sequence_interval.ipynb
- API:
- Sequence: api/sequence.md
- Tree: api/tree.md
- Ontology: api/ontology.md