-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
54 lines (53 loc) · 1.37 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
site_name: CodeSurvey
repo_url: https://github.com/lean-python-org/codesurvey/
site_description: Documentation for CodeSurvey
nav:
- README: 'README.md'
- Core CodeSurvey: 'core.md'
- Results Database: 'database.md'
- Sources:
- Core Sources: 'sources/core.md'
- Analyzers:
- Core Analyzers: 'analyzers/core.md'
- Feature Finders: 'analyzers/features.md'
- Languages:
- Python: 'analyzers/python.md'
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
heading_level: 3
docstring_section_style: list
members_order: source
show_root_heading: true
show_signature_annotations: true
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
theme:
name: material
features:
- navigation.tracking
- navigation.sections
- navigation.expand
palette:
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: orange
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: orange
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
extra_css:
- stylesheets/extra.css