-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmkdocs.yaml
88 lines (80 loc) · 2 KB
/
mkdocs.yaml
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
site_name: Pyright for PyCharm
site_description: The best of Pyright and PyCharm combined
site_url: https://insyncwithfoo.github.io/pyright-for-pycharm
repo_name: InSyncWithFoo/pyright-for-pycharm
repo_url: https://github.com/InSyncWithFoo/pyright-for-pycharm
edit_uri: blob/master/docs/
exclude_docs: |
/requirements.txt
theme:
name: material
favicon: assets/icon.svg
logo: assets/icon-outline.svg
palette:
-
media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: octicons/sun-16
name: "Switch to dark mode"
-
media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: octicons/moon-16
name: "Switch to light mode"
features:
- content.action.edit
- content.action.view
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.tracking
- search.suggest
markdown_extensions:
admonition:
codehilite:
md_in_html:
pymdownx.details:
pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
pymdownx.smartsymbols:
arrows: true
care_of: false
copyright: false
fractions: false
notequal: false
ordinal_numbers: false
plusminus: false
registered: false
trademark: false
pymdownx.superfences:
toc:
permalink: '#'
nav:
- Overview: index.md
- Configurations:
- Overview: configurations/index.md
- Running modes: configurations/running-modes.md
- Executables: configurations/executables.md
- Inspection: configurations/inspection.md
- Others: configurations/others.md
- Other features: features.md
- Problems: problems.md
- How-to guides: how-to.md
- Migration guide: migration-guide.md
- FAQ: faq.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
strict: true