-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
67 lines (67 loc) · 1.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
site_name: secret-type
site_url: https://python-secret-type.readthedocs.io/en/latest/
site_description: "A Rune-style secret type for sensitive values in Python."
repo_url: https://github.com/yasyf/python-secret-type
repo_name: yasyf/python-secret-type
edit_uri: edit/main/docs/
extra:
analytics:
provider: google
property: G-JLMNJ8DZPN
nav:
- Overview: index.md
- Quickstart: quickstart.md
- API Reference:
- reference/index.md
- reference/exceptions.md
- reference/monad.md
- reference/types.md
- Containers:
- reference/containers/Secret.md
- reference/containers/SecretBool.md
- reference/containers/SecretNumber.md
- reference/containers/SecretStr.md
theme:
name: material
features:
- content.code.annotate
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.expand
- navigation.indexes
- navigation.top
- toc.follow
- toc.integrate
plugins:
- search
- autorefs
- social
- git-committers:
repository: yasyf/python-secret-type
branch: main
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3.10/objects.inv
- https://typing.readthedocs.io/en/latest/objects.inv
- https://cryptography.io/en/latest/objects.inv
options:
show_signature_annotations: true
members_order: source
docstring_section_style: spacy
line_length: 100
markdown_extensions:
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- toc:
permalink: true
extra_css:
- css/code_select.css
- css/annotations.css