-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
67 lines (60 loc) · 1.61 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: "PKI Tools"
theme:
name: "readthedocs"
repo_name: fulder/pki-tools
repo_url: https://github.com/fulder/pki-tools
edit_uri: https://github.com/fulder/pki-tools/tree/main/docs
site_url: https://pki-tools.fulder.dev/
nav:
- Home: index.md
- Functions:
- Checking Revocation: funcs/check_revocation.md
- Types:
- Certificate: types/certificate.md
- CertificateRevocationList: types/crl.md
- CertificateSigningRequest: types/csr.md
- Certificates: types/certificates.md
- Chain: types/chain.md
- Enums: types/enums.md
- Name: types/name.md
- OCSP: types/ocsp.md
- Extensions: types/extensions.md
- KeyPair: types/key_pair.md
- Exceptions: types/exceptions.md
- CryptoParser: types/crypto_parser.md
- SignatureAlgorithm: types/signature_algorithm.md
plugins:
- search
- autorefs
- mkdocstrings:
enable_inventory: true
enabled: true
default_handler: python
handlers:
python:
paths: [pki_tools]
options:
show_root_heading: false
show_source: false
annotations_path: source
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
heading_level: 4
show_bases: true
import:
- https://cryptography.io/en/latest/objects.inv
markdown_extensions:
- tables
- toc:
permalink: true
title: Page contents
- pymdownx.snippets
- pymdownx.blocks.details
- admonition
watch:
- docs
- pki_tools
- mkdocs.yml
extra:
version: latest