-
Notifications
You must be signed in to change notification settings - Fork 155
/
mkdocs.yaml
91 lines (85 loc) · 2.09 KB
/
mkdocs.yaml
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
site_name: "validators"
site_description: "Automatic documentation from sources, for MkDocs."
site_url: "https://yozachar.github.io/pyvalidators/"
repo_url: "https://github.com/python-validators/validators/"
edit_uri: "edit/master/docs/"
repo_name: "validators/validators"
site_dir: "site"
watch: [README.md, src/validators/]
theme:
name: material
icon:
logo: material/marker-check
favicon: assets/icons/favicon.svg
font:
text: Inter
code: "Fira Code"
features:
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: teal
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
markdown_extensions:
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: true
- pymdownx.inlinehilite
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
import:
- https://docs.python-requests.org/en/master/objects.inv
- git-revision-date-localized
- mike
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/python-validators
- icon: fontawesome/brands/python
link: https://pypi.org/project/validators
version:
provider: mike
default: stable
copyright: Copyright © 2013 - 2024 Konsta Vesterinen
nav:
- Home: index.md
- Install and Use: install_and_use.md
- API:
- api/between.md
- api/crypto_addresses.md
- api/card.md
- api/country.md
- api/cron.md
- api/domain.md
- api/email.md
- api/encoding.md
- api/finance.md
- api/hashes.md
- api/hostname.md
- api/i18n.md
- api/iban.md
- api/ip_address.md
- api/length.md
- api/mac_address.md
- api/slug.md
- api/url.md
- api/utils.md
- api/uuid.md