forked from jalammar/ecco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
40 lines (35 loc) · 774 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
28
29
30
31
32
33
34
35
36
37
38
39
40
site_name: Ecco
theme:
name: "material"
logo: img/eccorca_white.png
favicon: img/eccorca_purple.png
palette:
primary: purple
accent: pink
extra_css:
- stylesheets/extra.css
plugins:
- mkdocstrings:
watch:
- src/ecco
handlers:
python:
setup_commands:
# - import ecco
- import sys
- sys.path.append("src")
nav:
- Home: index.md
- Architecture: architecture.md
- API:
- Ecco: api/ecco.md
- Language Model: api/language-model.md
- Output: api/output.md
- NMF: api/nmf.md
- Analysis: api/analysis.md
- EccoJS:
- Overview: eccoJS/overview.md
- Contribution Guide: contribution_guide.md
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences