forked from readthedocs-examples/example-mkdocs-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
28 lines (27 loc) · 779 Bytes
/
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
site_name: NOAA Omics Data Management Guide
theme:
name: readthedocs
highlightjs: true
extra_css: [style_2.css]
plugins:
- search
- mkdocstrings:
handlers:
# See: https://mkdocstrings.github.io/python/usage/
python:
options:
docstring_style: sphinx
markdown_extensions:
- markdown_include.include:
base_path: .
- admonition
nav:
- Home: 'index.md'
- 'Getting Started': 'getting-started.md'
- 'Data Management Plans': 'dmp-template.md'
- 'Study Data Templates': 'study-data-templates.md'
- 'Metadata Guidelines': 'metadata-guidelines.md'
- 'Omics Data Guidelines': 'omics-data-guidelines.md'
- 'Open Science Principles': 'open-science.md'
- 'Contributors': 'contributors.md'
use_directory_urls: false