forked from waza-ari/python-desfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
63 lines (59 loc) · 1.58 KB
/
mkdocs.yml
File metadata and controls
63 lines (59 loc) · 1.58 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
site_name: Python DESFire
repo_url: https://github.com/waza-ari/python-desfire
docs_dir: docs
site_dir: public
theme:
name: "material"
features:
- content.tabs.link
- content.code.annotate
- content.code.copy
- announce.dismiss
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: true
separate_signature: true
unwrap_annotated: true
show_signature_annotations: true
markdown_extensions:
- admonition
- tables
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- toc:
toc_depth: 4
permalink: true
title: Page contents
nav:
- index.md
- Supported Commands: supported-commands.md
- Using this Library: usage.md
- Key Diversification: key-diversification.md
- "API Reference":
- "Card Commands": api/desfire.md
- "Key Handling": api/key.md
- "Key Diversification": api/diversification.md
- "Utility Methods": api/utility.md
- "ENUMs / Schemas":
- "Communication Mode": api/enums/communication_mode.md
- "File Permissions": api/enums/file_permissions.md
- "File Settings": api/enums/file_settings.md
- "Key Settings": api/enums/key_settings.md
watch:
- docs
- src