-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (71 loc) · 1.94 KB
/
Copy pathmkdocs.yml
File metadata and controls
76 lines (71 loc) · 1.94 KB
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
site_name: Import Linter
site_description: Lint your Python architecture.
site_url: https://import-linter.readthedocs.io/
repo_name: seddonym/import-linter
repo_url: https://github.com/seddonym/import-linter
extra_css:
- stylesheets/extra.css
plugins:
- search
theme:
name: material
logo: img/import-linter-logo-square.svg
favicon: img/favicon.svg
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/lightbulb-auto
name: Switch to light mode
- media: '(prefers-color-scheme: light)'
toggle:
icon: material/lightbulb
name: Switch to dark mode
scheme: default
primary: black
accent: custom
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: black
accent: custom
toggle:
icon: material/lightbulb-outline
name: Switch to system preference
features:
- navigation.tabs
- navigation.footer
- navigation.path
- navigation.indexes
nav:
- index.md
- Get Started:
- get_started/install.md
- get_started/configure.md
- get_started/run.md
- Contract types:
- contract_types/index.md
- contract_types/forbidden.md
- contract_types/protected.md
- contract_types/layers.md
- contract_types/independence.md
- contract_types/acyclic_siblings.md
- ui.md
- Advanced:
- api.md
- custom_contract_types.md
- caching.md
- Get involved:
- contributing.md
- authors.md
- release_notes.md
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.blocks.caption
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight # Required for advanced highlighting features
- pymdownx.superfences # **Critical for nested fenced code blocks**