-
Notifications
You must be signed in to change notification settings - Fork 13
/
mkdocs.yml
104 lines (95 loc) · 2.66 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: AutoCircuit
site_description: A library for efficient activation patching and circuit discovery.
repo_url: https://github.com/UFO-101/auto-circuit
repo_name: UFO-101/auto-circuit
edit_uri: edit/main/docs/
theme:
name: material
font:
text: Rubik
icon:
repo: fontawesome/brands/github
edit: material/pencil
view: material/eye
features:
- content.action.edit
- content.action.view
- navigation.tabs
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.tracking
- navigation.path
- search.suggest
- search.highlight
- navigation.top
- navigation.sections
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: purple
toggle:
icon: material/brightness-4
name: Switch to system preference
# markdown_extensions:
# - pymdownx.tabbed:
# alternate_style: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
# base_path: "."
- pymdownx.superfences
watch:
- auto_circuit
extra_css:
- stylesheets/extra.css
extra_javascript:
# - javascripts/particles.min.js
- https://s3-us-west-2.amazonaws.com/s.cdpn.io/188512/codepen-utilities.min.js
- https://cdnjs.cloudflare.com/ajax/libs/stats.js/r11/Stats.js
- https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.5.1/dat.gui.min.js
- javascripts/SmallPRNG.js
- javascripts/extra.js
- javascripts/dynamical.js
plugins:
- search
- gen-files:
scripts:
- docs/gen_ref_pages.py
- mkdocstrings:
custom_templates: null
# default_handler: python
handlers:
python:
options:
show_submodules: true
show_root_heading: true
group_by_category: true
show_category_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_inheritance_diagram: true
merge_init_into_class: true
# show_if_no_docstring: true
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true