forked from RedisGears/RedisGears
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
61 lines (55 loc) · 1.27 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
site_name: RedisGears
site_url: http://redisgears.io
repo_url: https://github.com/RedisGears/RedisGears
repo_name: RedisGears/RedisGears
google_analytics:
- 'UA-92003007-1'
- 'auto'
use_directory_urls: false
theme:
name: 'material'
language: 'en'
logo: 'images/RedisGears.png'
favicon: 'images/favicon.png'
palette:
primary: 'indigo'
accent: 'red'
font:
text: 'Roboto'
code: 'Roboto Mono'
feature:
tabs: false
nav:
- 'Home': 'index.md'
- 'Quickstart': 'quickstart.md'
- 'Introduction': 'intro.md'
- 'Reference':
- 'Runtime': 'runtime.md'
- 'Functions': 'functions.md'
- 'Readers': 'readers.md'
- 'Operations': 'operations.md'
- 'Commands': 'commands.md'
- 'Configuration': 'configuration.md'
- 'Examples': 'examples.md'
- 'Clients': 'clients.md'
- 'Design':
- 'Sub-Interpreters': 'subinterpreters.md'
- 'Glossary': 'glossary.md'
- 'Contributing': 'contrib.md'
markdown_extensions:
- admonition
- codehilite:
guess_lang: False
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.superfences
- toc:
permalink: True
plugins:
- search
- include:
src_path: docs/snippets
- versions-menu:
exclude-regexes:
- '0\.[1-4]'
include-regex: '([0-9]+)\.([0-9]+)'