-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yml
65 lines (62 loc) · 1.89 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
site_name: TITAN
site_description: Documentation for the TITAN model
site_url: http://pph-collective.github.io/TITAN
theme:
name: material
features:
- navigation.instant
- navigation.tabs
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append("docs")
rendering:
show_root_heading: false
show_root_toc_entry: false
heading_level: 3
watch:
- titan
markdown_extensions:
- admonition
- codehilite
nav:
- Overview: index.md
- Getting Started:
- Installation: getting_started.md
- Running locally: run_local.md
- Running on Oscar: run_oscar.md
- Contributing: contributing.md
- API Reference:
- Agent: api/agent.md
- AgentSet: api/agent_set.md
- Agent Exposures:
- Overview: api/exposures/index.md
- HIV: api/exposures/hiv.md
- Knowledge: api/exposures/knowledge.md
- Agent Features:
- Overview: api/features/index.md
- HAART: api/features/haart.md
- High Risk: api/features/high_risk.md
- Incarceration: api/features/incar.md
- External Exposure: api/features/external_exposure.md
- Partner Tracing: api/features/partner_tracing.md
- PrEP: api/features/prep.md
- Random Trial: api/features/random_trial.md
- Syringe Services: api/features/syringe_services.md
- Vaccine: api/features/vaccine.md
- Agent Interactions:
- Overview: api/interactions/index.md
- Injection: api/interactions/injection.md
- Peer Change Agent: api/interactions/pca.md
- Sex: api/interactions/sex.md
- Location: api/location.md
- Model: api/model.md
- Partnering: api/partnering.md
- Population: api/population.md
- Relationship: api/relationship.md
- Reporting: api/reporting.md
- Utility Functions: api/utilities.md