-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
126 lines (120 loc) · 3.07 KB
/
mkdocs.yml
File metadata and controls
126 lines (120 loc) · 3.07 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
site_name: Derive Client
site_description:
docs_dir: docs
site_url: https://8ball030.github.io/derive_client/
repo_url: https://github.com/8ball030/derive_client
nav:
- Home: index.md
- Quickstart: quickstart.md
- Examples: examples.md
- Concepts:
- Account Model: concepts/account-model.md
- Authentication: concepts/authentication.md
- Bridging: concepts/bridging.md
- Clients: concepts/clients.md
- CLI Reference: cli.md
- API Reference: reference/
- Internal API: internal/
validation:
nav:
omitted_files: info
theme:
name: material
language: en
# logo: assets/logo.png
palette:
scheme: slate
primary: indigo
accent: indigo
features:
- navigation.indexes
- navigation.instant
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- navigation.footer
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.code.annotate
- content.tabs.link
markdown_extensions:
- admonition
- attr_list
- meta
- pymdownx.details
- pymdownx.highlight
- pymdownx.keys
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tasklist
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.tilde
- pymdownx.caret
- pymdownx.critic
- pymdownx.betterem
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
linenums: false
- toc:
baselevel: 2
toc_depth: 3
permalink: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
percent_encode: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
# make exceptions to highlighting of code:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
plugins:
- include-markdown
- mermaid2
- search:
lang: en
- gen-files:
scripts:
- scripts/generate-ref-pages.py
- scripts/generate-internal-pages.py
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
members_order: source
group_by_category: true
show_category_heading: true
show_if_no_docstring: false
inherited_members: false
merge_init_into_class: true
show_signature_annotations: true
separate_signature: true
signature_crossrefs: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/8ball030/derive_client
name: Github
- icon: material/email
link: "mailto:8ball030@gmail.com"