-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
46 lines (42 loc) · 1.08 KB
/
mkdocs.yml
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
site_name: Banks
repo_url: https://github.com/masci/banks
theme:
name: material
palette:
primary: amber
scheme: slate
nav:
- Home: "index.md"
- Examples: "examples.md"
- Python API: "python.md"
- Prompt API: "prompt.md"
- Configuration: "config.md"
- Prompt Registry: "registry.md"
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: google
show_root_heading: true
show_root_full_path: true
show_symbol_type_heading: false
show_source: false
show_signature_annotations: true
show_bases: false
separate_signature: true
markdown_extensions:
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition