-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
42 lines (37 loc) · 1.1 KB
/
mkdocs.yml
File metadata and controls
42 lines (37 loc) · 1.1 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
site_name: "LLMCode Docs"
theme:
name: material
logo: assets/book_logo.png
favicon: assets/book_logo.png
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
docstring_style: google
show_root_heading: true
show_source: true
separate_signature: true
line_length: 80
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_inheritance_diagram: true
nav:
- Home: index.md
- Installation: installation.md
- Usage: usage.md
- Customization: customization.md
- Reference:
- Entrypoint: reference/entrypoint.md
- Utils:
- Auxiliary: reference/utils/auxiliary.md
- Completion: reference/utils/completion.md
- Document: reference/utils/document.md
- File_utils: reference/utils/file_utils.md
- Logger: reference/utils/logger.md