-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
43 lines (40 loc) · 1.01 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
site_name: WebZ
site_description: 'Library that aims to abstract calls to different WebServices (in HTTP or SOAP)'
site_author: 'CuyZ'
site_url: https://cuyz.github.io/WebZ/
docs_dir: docs
repo_name: 'cuyz/webz'
repo_url: 'https://github.com/CuyZ/WebZ'
theme:
name: 'material'
palette:
scheme: dracula
primary: pink
accent: pink
features:
- navigation.sections
extra_css:
- css/dracula.css
markdown_extensions:
- pymdownx.highlight:
extend_pygments_lang:
- name: php
lang: php
options:
startinline: true
- pymdownx.superfences
nav:
- Introduction: index.md
- Why?: why.md
- Getting Started: getting-started.md
- Transports:
- HTTP: transports/http.md
- SOAP: transports/soap.md
- Services:
- Cache: services/cache.md
- Events: services/events.md
- Exceptions: services/exceptions.md
- Advanced:
- Transport: advanced/transport.md
- Async Transport: advanced/async-transport.md
- Contribute: advanced/contribute.md