-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
55 lines (51 loc) · 1.13 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
site_name: CivicLens DOCS
repo_url: https://github.com/uchicago-capp-30320/CivicLens
repo_name: uchicago-capp-30320/CivicLens
theme:
name: material
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [civclens]
options:
show_source: True
show_root_full_path: false
show_root_toc_entry: false
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- tables
- pymdownx.highlight
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- def_list
- pymdownx.tasklist:
custom_checkbox: true
nav:
- "index.md"
- "models.md"
- "architecture.md"
- API Reference:
- "collect.md"
- "nlp.md"
- Endpoints:
- "endpoints/home.md"
- "endpoints/learn.md"
- "endpoints/search.md"
- "endpoints/document.md"
- "endpoints/about.md"