-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
25 lines (24 loc) · 796 Bytes
/
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
site_name: reQ
site_description: HTTP request library for q language
site_url: http://jmcmurray.co.uk/reQ
repo_url: https://github.com/jonathonmcmurray/reQ
theme:
name: mkdocs
google_analytics: ['UA-119708613-1', 'jmcmurray.co.uk']
nav:
- Overview: 'index.md'
- Features:
- 'Cookies': 'features/cookies.md'
- 'Headers': 'features/headers.md'
- 'HTTP redirects': 'features/redirects.md'
- 'Verbose mode': 'features/verbose.md'
- 'Configurable defaults': 'features/config.md'
- API:
- 'Public functions': 'api/md/public.md'
- 'Private functions': 'api/md/private.md'
- 'Variables': 'api/md/variable.md'
- Examples:
- 'Advent of Code': 'examples/aoc.md'
- 'GitHub': 'examples/github.md'
- 'JIRA': 'examples/jira.md'
- 'Zoho': 'examples/zoho.md'