-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
53 lines (49 loc) · 1.33 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
site_name: LazyTypeHint
nav:
- Home: index.md
- User guide:
- Introduction: user_guide/introduction.md
- Configuration: user_guide/configuration.md
- Standard API: user_guide/standard_api.md
- Live API: user_guide/live_api.md
theme:
name: material
palette:
scheme: slate # Dark theme
primary: black
navigation_depth: 1
features:
- search.suggest
- navigation.instant
- navigation.tracking
- navigation.tabs
- toc.integrate
- content.code.copy
- content.code.select
- content.code.annotate
extra_css:
- 'stylesheets/extra.css'
markdown_extensions:
- admonition # For blocks like warnings or notes
- markdown.extensions.attr_list
- tables
- toc:
permalink: "#"
toc_depth: 10
- pymdownx.magiclink # Clickable links from URLS
- pymdownx.inlinehilite # Highlights inline code with specific syntax.
- pymdownx.snippets # Embeds external content into Markdown documents.
- pymdownx.superfences # Enhances code blocks with advanced features.
- pymdownx.details # Allows for expandable blocks
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.tabbed:
alternate_style: true
- attr_list
plugins:
- git-revision-date-localized:
strict: false
- search
- htmlproofer