-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmkdocs.yml
More file actions
59 lines (55 loc) · 1.4 KB
/
mkdocs.yml
File metadata and controls
59 lines (55 loc) · 1.4 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
site_name: "Issx"
repo_url: https://github.com/nekeal/issx
theme:
name: material
features:
- content.code.copy
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
nav:
- Introduction: 'index.md'
- CLI Usage: cli_usage.md
- Supported Backends: backends.md
- api_docs.md
- changelog.md
markdown_extensions:
- toc:
title: On this page
permalink: true
- pymdownx.snippets:
check_paths: true
- admonition: {}
- pymdownx.details
- pymdownx.superfences
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- def_list
- pymdownx.tasklist:
custom_checkbox: true
plugins:
- search:
- mkdocstrings:
default_handler: python
handlers:
python:
paths: ["src"]
options:
docstring_style: sphinx
show_signature_annotations: true
separate_signature: true
show_symbol_type_heading: true
show_symbol_type_toc: true
show_source: true
show_submodules: true
show_headings: true
show_inherited_members: true
show_root_toc_entry: true