-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
67 lines (61 loc) · 1.5 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
# Project Information
site_name: 'CellEngine Python Toolkit'
site_description: 'Python API toolkit for CellEngine'
site_author: 'Zach Bjornson, Gerrit Egnew'
# Repository
repo_name: 'cellengine/cellengine-pythoon-toolkit'
repo_url: 'https://github.com/cellengine/cellengine-python-toolkit'
site_url: 'https://cellengine.github.io/cellengine-python-toolkit/'
# Site Layout
nav:
- Home: index.md
- Resources:
- API Client: api_client.md
- Attachments: attachments.md
- Compensations: compensations.md
- Experiments: experiments.md
- FcsFiles: fcs_files.md
- Folders: folders.md
- Gates: gates.md
- Plots: plots.md
- Populations: populations.md
- ScaleSets: scalesets.md
- Cookbook: recipes.md
- Development: contributing.md
# Build information
docs_dir: 'docs'
# Theme Customization
theme:
name: material
language: en
direction: ltr
feature:
tabs: false
palette:
primary: indigo
accent: indigo
font:
text: Roboto
code: Roboto Mono
favicon: 'images/favicon.ico'
logo: 'images/logo.svg'
# Plugins
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_object_full_path: false
show_source: false
show_if_no_docstring: true
group_by_category: true
heading_level: 2
filters:
- "!^__[^__]"
- "!^_"
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences