-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
92 lines (84 loc) · 2.24 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
site_name: Lighter
theme:
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
font:
code: Roboto Mono
name: material
favicon: assets/images/lighter_favicon.png
logo: assets/images/lighter_logo.png
features:
- content.code.copy
- content.code.select
- content.code.annotate
- header.autohide
- content.tooltips
- footnotes
- navigation.tabs
- navigation.tabs.sticky
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/weather-night
name: Switch to system preference
extra_css:
- assets/extra.css
# Plugins
# Auto API reference generation: https://mkdocstrings.github.io/recipes/#automatic-code-reference-pages
plugins:
- search
- autorefs
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
handlers:
python:
docstring_style: google
options:
# Removed the default filter that excludes private members (that is, members whose names start with a single underscore).
filters: null
nav:
- Home: index.md
- Basics:
- Quickstart: basics/quickstart.md
- Configuration System: basics/config.md
- Running workflows: basics/workflows.md
- Integrating your projects: basics/projects.md
- Advanced:
- Postprocessing: advanced/postprocessing.md
- Inferer: advanced/inferer.md
- Callbacks: advanced/callbacks.md
- API Reference: reference/
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- admonition
- pymdownx.details
- pymdownx.superfences
repo_name: project-lighter/lighter
repo_url: https://github.com/project-lighter/lighter