-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
105 lines (92 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
site_name: LOGos
repo_url: https://github.com/mitdbg/logos
repo_name: mitdbg/logos
theme:
name: material
language: en
features:
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.path
- navigation.top
- navigation.footer
- navigation.indexes
- content.code.copy
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for light mode
- scheme: default
primary: light-blue
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: light-blue
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: docs/SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append("src")
paths: [src]
options:
docstring_style: google
docstring_options:
show_if_no_docstring: true
show_source: true
members_order: "source"
filters: [".*"]
show_type_annotations: true
nav:
- Home: index.md
- Docs:
- "LOGos": reference/logos/logos.md
- "Drain": reference/logos/drain.md
- "TagUtils": reference/logos/tag_utils.md
- "CausalUnitSuggester": reference/logos/causal_unit_suggester.md
- "AggregateSelector": reference/logos/aggregate_selector.md
- "EdgeStateMatrix": reference/logos/edge_state_matrix.md
- "CandidateCauseRanker": reference/logos/candidate_cause_ranker.md
- "Pruner": reference/logos/pruner.md
- "Regression": reference/logos/regression.md
- "GraphRenderer": reference/logos/graph_renderer.md
- "ATECalculator": reference/logos/ate_calculator.md
- "InteractiveCausalGraphRefiner": reference/logos/interactive_causal_graph_refiner.md
- "EdgeOccurrenceTree": reference/logos/edge_occurrence_tree.md
- "Pickler": reference/logos/pickler.md
- "Printer": reference/logos/printer.md
- "Types": reference/logos/types.md
- Variable Names:
- "ParsedVariableName": reference/logos/variable_name/parsed_variable_name.md
- "PreparedVariableName": reference/logos/variable_name/prepared_variable_name.md
- Aggregation/Imputation Functions:
- "Aggregation Functions": reference/logos/aggimp/agg_funcs.md
- "Imputation Functions": reference/logos/aggimp/imp_funcs.md
markdown_extensions:
- markdown_include.include:
base_path: .
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- tables