-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
109 lines (102 loc) · 2.78 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
site_name: "SC Crawler"
repo_url: https://github.com/spareCores/sc-crawler/
edit_uri: blob/main/docs/
extra:
homepage: https://sparecores.com
social:
- icon: fontawesome/brands/github
link: https://github.com/spareCores
- icon: custom/dbdocs
link: https://dbdocs.io/spare-cores/sc-crawler
- icon: fontawesome/solid/database
link: https://dbhub.io/SpareCores
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/company/SpareCores
- icon: fontawesome/brands/x-twitter
link: https://twitter.com/SpareCores
- icon: fontawesome/brands/facebook
link: https://www.facebook.com/SpareCores/
nav:
- index.md
- add_vendor.md
- Reference: reference/
- Changelog: CHANGELOG.md
theme:
name: "material"
custom_dir: overrides
logo: logo-horizontal.png
favicon: logo-128x128.png
icon:
repo: fontawesome/brands/github
features:
- content.action.edit
- content.code.copy
- content.code.annotate
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.path
- toc.integrate
- search.suggest
- navigation.footer
- optimize
extra_css:
- stylesheets/extra.css
- asciinema-player/asciinema-player.css
extra_javascript:
- asciinema-player/asciinema-player.min.js
plugins:
- search
- autorefs
- gen-files:
scripts:
- scripts/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
- section-index
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://rich.readthedocs.io/en/stable/objects.inv
- https://docs.pydantic.dev/latest/objects.inv
- https://docs.sqlalchemy.org/en/20/objects.inv
# TODO objects.inv for SQLModel
options:
show_source: true
show_signature: true
separate_signature: true
show_root_heading: true
show_signature_annotations: false
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
members_order: source
group_by_category: false
summary: true
extensions:
- scripts/dynamic_docstrings.py:DynamicDocstrings
# - social:
# enabled: !ENV [CI, false]
markdown_extensions:
- toc:
permalink: "#"
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- overrides/.icons