-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
90 lines (87 loc) · 2.55 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
87
88
89
90
site_name: SMS Gateway for Android™
site_url: https://docs.sms-gate.app
repo_url: https://github.com/capcom6/android-sms-gateway
site_description: Official documentation for SMS Gateway for Android
site_author: Aleksandr Soloshenko
theme:
name: material
features:
- content.code.copy
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
nav:
- Home: index.md
- Installation: installation.md
- Getting Started:
- Overview: getting-started/index.md
- Local Server: getting-started/local-server.md
- Public Cloud Server: getting-started/public-cloud-server.md
- Private Server: getting-started/private-server.md
- Custom Gateway Setup: getting-started/custom-gateway.md
- Webhooks: getting-started/webhooks.md
- Integration:
- CLI: integration/cli.md
- API: integration/api.md
- Webhooks: features/webhooks.md
- Features:
- Multi-SIM Support: features/multi-sim.md
- Webhooks: features/webhooks.md
- Reading Messages: features/reading-messages.md
- Logging: features/logging.md
- Pricing: pricing.md
- Privacy:
- Policy: privacy/policy.md
- Encryption: privacy/encryption.md
- FAQ:
- General: faq/general.md
- Webhooks: faq/webhooks.md
- Reading Messages: faq/reading-messages.md
- Errors: faq/errors.md
- Resources:
- Examples: resources/examples.md
- Third-Party: resources/3rdparty.md
- Usages: resources/usages.md
- Contributing: contributing.md
- License: license.md
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
plugins:
- search
- render_swagger
- minify:
minify_html: true
minify_js: true
minify_css: true
htmlmin_opts:
remove_comments: true
cache_safe: true
- social
- git-revision-date-localized:
enable_creation_date: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences