-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
41 lines (41 loc) · 1 KB
/
mkdocs.yml
File metadata and controls
41 lines (41 loc) · 1 KB
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
site_name: PyQSARToolbox
site_description: Python client for the local QSAR Toolbox Web API
site_url: https://usetox.github.io/PyQSARToolbox/
repo_url: https://github.com/USEtox/PyQSARToolbox
repo_name: USEtox/PyQSARToolbox
theme:
name: material
features:
- navigation.sections
- navigation.instant
- content.code.copy
palette:
- scheme: default
primary: indigo
accent: indigo
nav:
- Home: index.md
- Getting Started: getting-started.md
- Search for Chemicals: search_chemicals.md
- Experimental Data: extract_data.md
- QSAR Models: run_qsar.md
- Step by Step: step_by_step.md
- Workflows: workflows.md
- API Reference: api.md
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_source: false
docstring_style: google
merge_init_into_class: true
markdown_extensions:
- admonition
- toc:
permalink: true
- tables
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.superfences