-
Notifications
You must be signed in to change notification settings - Fork 14
/
mkdocs.yml
77 lines (71 loc) · 1.67 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
# Site Info
site_name: TigoPesa Docs
site_url: https://tigopesa-docs.netlify.app/
site_author: Alpha Olomi
site_description: >-
Tigopesa Documentation for Developers
# Repository
repo_name: alphaolomi/tigopesa-docs
repo_url: https://github.com/alphaolomi/tigopesa-docs
edit_uri: edit/main/docs/
# Copyright
copyright: Copyright © 2021 Alpha Olomi
# Navigation
nav:
- Home: index.md
- Guide:
- Introduction: introduction.md
- Version History: version.md
- Online Payments Guide: online_payments.md
- API Guide: api_spec.md
- Partner Integration Guide: partner_integration.md
- "Integrations":
- PHP: php.md
- Node.js: node.md
- Python: python.md
- About: about.md
plugins:
- search
# - git-revision-date
# - git-revision-date-localized:
# fallback_to_build_date: true
theme:
name: material
icon:
repo: fontawesome/brands/github
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
extra:
analytics:
provider: google
property: G-5NM1TL3BRZ
social:
- icon: fontawesome/brands/github
link: https://github.com/alphaolomi
markdown_extensions:
- footnotes
- pymdownx.highlight:
linenums: true
- pymdownx.snippets
- pymdownx.keys
- pymdownx.inlinehilite
- pymdownx.superfences
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta