-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
86 lines (79 loc) · 2.19 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
77
78
79
80
81
82
83
84
85
86
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
# pip install mkdocs mkdocs-material
# mkdocs serve
# mkdocs gh-deploy
site_name: Validable
repo_name: Validable
repo_url: https://github.com/devscast/validable
site_description: "An easy-to-use text field validator for Kotlin & Jetpack compose."
site_author: Devscast
remote_branch: gh-pages
copyright: 'Copyright © 2024 Devscast Community'
theme:
name: 'material'
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: 'white'
accent: 'yellow'
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: 'black'
accent: 'yellow'
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: 'Lato'
code: 'Fira Code'
features:
- content.code.copy
- content.code.select
markdown_extensions:
- smarty
- codehilite:
guess_lang: false
- footnotes
- meta
- toc:
permalink: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.emoji
- pymdownx.tabbed:
alternate_style: true
- tables
- admonition
- attr_list
- md_in_html
nav:
- 'Get Started': index.md
- 'Create a validable': create_validable.md
- 'Built in validables':
- 'CardSchemeValidable' : validables/cardscheme.md
- 'Email' : validables/email.md
- 'Equal To' : validables/equal_to.md
- 'Greater Than Or Equal' : validables/greater_than_or_equal.md
- 'Greater Than' : validables/greater_than.md
- 'HostName' : validables/host_name.md
- 'IP Address' : validables/ip.md
- validables/less_than.md
- validables/less_than_or_equal.md
- validables/negative_or_zero.md
- validables/negative.md
- validables/not_blank.md
- validables/not_empty.md
- validables/not_equal.md
- validables/positive.md
- validables/positive_or_zero.md
- validables/range.md
- validables/regex.md
- 'Code of conduct': coc.md