-
Notifications
You must be signed in to change notification settings - Fork 116
/
mkdocs.yml
97 lines (89 loc) · 2.42 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
site_name: Python Substrate Interface Docs
repo_url: https://github.com/polkascan/py-substrate-interface
edit_uri: edit/master/docs/
site_description: Python library to interface with Substrate
theme:
name: "material"
logo: https://avatars.githubusercontent.com/u/43450475
features:
# - announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
# - content.tabs.link
- content.tooltips
# - header.autohide
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# - toc.integrate
plugins:
- mkdocstrings:
handlers:
python:
options:
# docstring_section_style: list
members_order: source
show_root_heading: false
show_source: false
show_signature_annotations: true
docstring_style: numpy
heading_level: 2
- autorefs
- search
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/polkascan
- icon: fontawesome/brands/twitter
link: https://twitter.com/polkascan
nav:
- Overview: index.md
- Getting started:
- getting-started/installation.md
- getting-started/common-concepts.md
- Usage:
- usage/query-storage.md
- usage/using-scaletype-objects.md
- usage/subscriptions.md
- usage/keypair-creation-and-signing.md
- usage/extrinsics.md
- usage/call-runtime-apis.md
- usage/ink-contract-interfacing.md
- usage/extensions.md
- usage/cleanup-and-context-manager.md
- Function Reference:
- reference/base.md
- reference/keypair.md
- reference/contracts.md
- reference/interfaces.md
- reference/extensions.md
- reference/storage.md
- Examples: examples.md
- Extensions:
- extensions/index.md
- extensions/substrate-node-extension.md
- extensions/polkascan-extension.md
- extensions/subsquid-extension.md
- Metadata docs: https://polkascan.github.io/py-substrate-metadata-docs/
markdown_extensions:
- toc:
permalink: true
toc_depth: 4
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences