-
Notifications
You must be signed in to change notification settings - Fork 54
/
mkdocs.yml
77 lines (70 loc) · 1.8 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
site_name: Python SCALE-codec Docs
repo_url: https://github.com/polkascan/py-scale-codec
edit_uri: edit/master/docs/
site_description: SCALE Codec implementation in Python to communicate 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
- Examples: examples.md
- Function Reference:
- Base: reference/base.md
- Types: reference/types.md
- Type registry: reference/type_registry.md
- Utils:
- reference/utils/ss58.md
- reference/utils/math.md
markdown_extensions:
- toc:
permalink: true
toc_depth: 4
- pymdownx.highlight:
linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences