-
Notifications
You must be signed in to change notification settings - Fork 98
/
mkdocs.yml
77 lines (71 loc) · 2.2 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_name: Pypeln
repo_name: cgarciae/pypeln
repo_url: https://github.com/cgarciae/pypeln
site_url: https://cgarciae.github.io/pypeln
theme:
name: material
nav:
- Introduction: index.md
- Advanced Usage: advanced.md
- API Reference:
- process:
Overview: api/process/Overview.md
concat: api/process/concat.md
each: api/process/each.md
filter: api/process/filter.md
flat_map: api/process/flat_map.md
from_iterable: api/process/from_iterable.md
map: api/process/map.md
ordered: api/process/ordered.md
run: api/process/run.md
to_iterable: api/process/to_iterable.md
- thread:
Overview: api/thread/Overview.md
concat: api/thread/concat.md
each: api/thread/each.md
filter: api/thread/filter.md
flat_map: api/thread/flat_map.md
from_iterable: api/thread/from_iterable.md
map: api/thread/map.md
ordered: api/thread/ordered.md
run: api/thread/run.md
to_iterable: api/thread/to_iterable.md
- task:
Overview: api/task/Overview.md
concat: api/task/concat.md
each: api/task/each.md
filter: api/task/filter.md
flat_map: api/task/flat_map.md
from_iterable: api/task/from_iterable.md
map: api/task/map.md
ordered: api/task/ordered.md
run: api/task/run.md
to_iterable: api/task/to_iterable.md
- sync:
Overview: api/sync/Overview.md
concat: api/sync/concat.md
each: api/sync/each.md
filter: api/sync/filter.md
flat_map: api/sync/flat_map.md
from_iterable: api/sync/from_iterable.md
map: api/sync/map.md
ordered: api/sync/ordered.md
run: api/sync/run.md
to_iterable: api/sync/to_iterable.md
extra:
search:
language: en
social:
- type: github
link: https://github.com/cgarciae
- type: twitter
link: https://twitter.com/cgarciae88
- type: linkedin
link: https://www.linkedin.com/in/cgarciae
markdown_extensions:
- admonition
- codehilite
# - mkautodoc
plugins:
- search
- mkdocstrings