-
Notifications
You must be signed in to change notification settings - Fork 119
/
mkdocs.yml
73 lines (63 loc) · 1.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
site_name: SAE Lens
site_description: Docs for Sparse Autoencoder Training and Analysis Library
site_author: Joseph Bloom
repo_url: http://github.com/jbloomAus/SAELens
repo_name: jbloomAus/SAELens
edit_uri: ""
theme:
name: material
font:
text: Nunito
palette:
- scheme: default
primary: green
accent: yellow
background: white
# Palette toggle for light mode
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: green
accent: yellow
background: white
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- navigation.instant
icon:
repo: fontawesome/brands/github
extra_javascript:
- javascript/custom_formatting.js
# The below three make MathJax work, see https://squidfunk.github.io/mkdocs-material/reference/mathjax/
- javascript/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Roadmap: roadmap.md
- Training SAEs: training_saes.md
- Citation: citation.md
- Contributing: contributing.md
- API: api.md
- Supported SAEs: sae_table.md
plugins:
- search
- autorefs
- section-index
- mkdocstrings:
custom_templates: null
watch:
- sae_lens/ # Replace with the path to your Python code
hooks:
- docs/generate_sae_table.py
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences