-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
36 lines (36 loc) · 862 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
26
27
28
29
30
31
32
33
34
35
36
site_name: RxPipes
theme:
name: material
features:
- navigation.instant
- nagivation.tabs
- navigation.sections
- navigation.expand
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: "google"
rendering:
show_root_heading: no
show_category_heading: no
extra_css:
- css/mkdocstrings.css
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
nav:
- Home: index.md
- Getting Started:
- Installation: installation.md
- Quick Start: quickstart.md
- Reference:
rxpipes:
- pipeline.py: rxpipes/pipeline.md
- concurrency.py: rxpipes/concurrency.md
- Examples:
- Reactive: examples/reactive.md
- Concurrency: examples/concurrency.md
- Image Processing: examples/image-processing.md