This repository was archived by the owner on Dec 22, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
78 lines (70 loc) · 1.72 KB
/
mkdocs.yaml
File metadata and controls
78 lines (70 loc) · 1.72 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
77
78
site_name: Pyright Language Server for PyCharm
site_description: A PyCharm plugin that runs Pyright as you code
site_url: https://insyncwithfoo.github.io/pyright-langserver-for-pycharm
repo_name: InSyncWithFoo/pyright-langserver-for-pycharm
repo_url: https://github.com/InSyncWithFoo/pyright-langserver-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
- 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: configurations.md
- Features: features.md
- Problems: problems.md
- Logging: logging.md
- How-to guides: how-to.md
- FAQ: faq.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
strict: true