-
Notifications
You must be signed in to change notification settings - Fork 278
/
mkdocs.yml
71 lines (71 loc) · 1.75 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
site_name: Solana.py
theme:
name: material
icon:
logo: material/snake
favicon: img/favicon.ico
features:
- navigation.tabs
- navigation.top
- navigation.instant
palette:
- scheme: default
primary: deep purple
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- pymdownx.snippets
- meta
- pymdownx.tabbed:
alternate_style: true
repo_url: https://github.com/michaelhly/solana-py
repo_name: michaelhly/solana-py
site_url: https://michaelhly.github.io/solana-py/
site_author: Kevin Heavey & Michael Huang
plugins:
- mkdocstrings:
handlers:
python:
selection:
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
rendering:
show_root_heading: true
show_bases: false
- search
nav:
- index.md
- RPC API:
- rpc/api.md
- rpc/async_api.md
- rpc/websocket.md
- rpc/commitment.md
- rpc/types.md
- rpc/providers.md
- Core API:
- core/transaction.md
- core/utils.md
- core/vote_program.md
- Solana Program Library (SPL):
- spl/intro.md
- Token:
- spl/token/client.md
- spl/token/async_client.md
- spl/token/constants.md
- spl/token/instructions.md
- spl/token/core.md
- Memo Program:
- spl/memo/intro.md
- spl/memo/constants.md
- spl/memo/instructions.md
extra_css:
- css/mkdocstrings.css