-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yaml
More file actions
65 lines (64 loc) · 1.73 KB
/
mkdocs.yaml
File metadata and controls
65 lines (64 loc) · 1.73 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
site_name: Duron
site_url: "https://brian14708.github.io/duron"
repo_url: "https://github.com/brian14708/duron"
repo_name: "brian14708/duron"
nav:
- index.md
- getting-started.md
- Reference: &references
- reference/duron.md
- reference/log.md
- reference/codec.md
- reference/tracing.md
- reference/typing.md
- reference/contrib.md
- Trace UI: https://brian14708.github.io/duron/trace-ui/
theme:
name: material
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
logo: images/icon.svg
favicon: images/icon.svg
features:
- navigation.tabs
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
options:
show_symbol_type_heading: true
show_symbol_type_toc: true
show_source: false
show_submodules: false
show_attribute_values: false
separate_signature: true
overloads_only: true
merge_init_into_class: true
members: true
docstring_section_style: list
inventories:
- https://docs.python.org/3/objects.inv
- https://typing-extensions.readthedocs.io/en/latest/objects.inv
- mermaid2:
arguments:
theme: |
^(window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) ? 'dark' : 'light'
- llmstxt:
sections:
Documentation:
- getting-started.md
API Reference: *references
markdown_extensions:
- pymdownx.snippets:
base_path: ["."]
check_paths: true