-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
56 lines (55 loc) · 2.06 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
site_name: PhenEx
nav:
- Home: index.md
- Installation: installation.md
- Tutorials:
- CodelistPhenotype: tutorials/CodelistPhenotype_Tutorial.ipynb
- MeasurementPhenotype: tutorials/MeasurementPhenotype_Tutorial.ipynb
- ArithmeticPhenotype: tutorials/ArithmeticPhenotype_Tutorial.ipynb
- LogicPhenotype: tutorials/LogicPhenotype_Tutorial.ipynb
- API:
- Phenotypes:
- Phenotype: api/phenotypes/phenotype.md
- CodelistPhenotype: api/phenotypes/codelist_phenotype.md
- MultipleOccurrencePhenotype: api/phenotypes/multiple_occurrences_phenotype.md
- MeasurementPhenotype: api/phenotypes/measurement_phenotype.md
- AgePhenotype: api/phenotypes/age_phenotype.md
- SexPhenotype: api/phenotypes/sex_phenotype.md
- DeathPhenotype: api/phenotypes/death_phenotype.md
- ContinuousCoveragePhenotype: api/phenotypes/continuous_coverage_phenotype.md
- ArithmeticPhenotype: api/phenotypes/arithmetic_phenotype.md
- LogicPhenotype: api/phenotypes/logic_phenotype.md
- ScorePhenotype: api/phenotypes/score_phenotype.md
- Cohort: api/phenotypes/cohort.md
- Codelists:
- Codelist: api/codelists/codelists.md
- LocalCSVCodelistFactory: api/codelists/local_csv_codelist_factory.md
- Connectors: api/ibis_connect.md
- Reporting:
- Report: api/reporting/reporter.md
- Table1: api/reporting/table1.md
- License: LICENSE.md
plugins:
- mkdocstrings:
handlers:
python:
paths: [../phenex] # search packages in the src folder
options:
docstring_style: "google" # or "numpy", "restructuredtext", etc.
- mkdocs-jupyter
theme:
name: material
palette:
primary: red
features:
- content.code.copy
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: false # Try setting this to false
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra_css:
- assets/style.css