-
Notifications
You must be signed in to change notification settings - Fork 7
/
mkdocs.yml
66 lines (59 loc) · 1.28 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
# Project
site_name: "HTAN Data Model Dictionary"
site_description: >
Versioned history of the HTAN data model.
# Repository
repo_url: https://github.com/ncihtan/data-models
repo_name: data-models
# Navigation
nav:
- Home: index.md
- Dictionary:
- Dictionary: dictionary.md
# Theme configuration
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
toggle:
icon: material/toggle-switch
name: Switch to light mode
logo: assets/htan-logo.png
icon:
admonition:
note: octicons/tag-16
info: octicons/info-16
features:
- content.code.copy
- navigation.tabs
- navigation.footer
- navigation.sections
- search.highlight
- search.share
- search.suggest
- toc.follow
# Custom CSS
extra_css:
- assets/custom.css
# Plugins
plugins:
- search
- table-reader:
data_path: "modules"
select_readers:
- read_csv
# Markdown Extensions
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true