-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
92 lines (92 loc) · 2.34 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
site_name: Turu
site_description: Simple Typed Python Database Client based PEP 249
theme:
name: material
language: en
logo: images/icon.svg
favicon: images/icon.svg
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: orange
toggle:
icon: material/weather-night
name: "Switch to dark mode"
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: yellow
toggle:
icon: material/weather-sunny
name: "Switch to light mode"
features:
- search.highlight
- search.suggest
- content.tabs.link
- content.code.annotate
- content.code.copy
- navigation.footer
icon:
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
repo_name: yassun7010/turu-py
repo_url: https://github.com/yassun7010/turu-py
site_url: https://yassun7010.github.io/turu-py/
edit_uri: edit/main/docs/
plugins:
- search
- awesome-pages:
- inline-svg:
- exclude:
glob:
- "**/.pytest_cache/*"
- social
- mkdocstrings:
handlers:
python:
paths: [.]
options:
show_root_heading: true
show_bases: false
heading_level: 2
show_symbol_type_heading: true
show_symbol_type_toc: true
filters: ["!^_"]
group_by_category: true
extensions:
- griffe_inherited_docstrings
markdown_extensions:
- toc:
permalink: true
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- ...
- Database Adapter:
- ... | flat | adapters/*.md
- API Documentation:
- api/turu-core.md
- ... | flat | api/turu-*.md