forked from qcoro/qcoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
61 lines (55 loc) · 1.86 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: QCoro
site_description: QCoro is a C++ framework for using coroutines with Qt
site_author: Daniel Vrátil
copyright: Copyright © <a href="https://www.dvratil.cz">Daniel Vrátil</a>, all contents published under <a href="https://www.gnu.org/licenses/fdl-1.3.html">GNU FDL 1.3</a>, unless stated otherwise.
repo_url: https://github.com/danvratil/qcoro
repo_name: 'QCoro on GitHub'
edit_uri: ''
theme:
name: material
custom_dir: docs/overrides
features:
- navigation.expand
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.extra
- admonition
plugins:
- search
- include-markdown
- macros:
module_name: docs/macros
extra_css:
- stylesheets/doctable.css
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/danvratil
- icon: fontawesome/brands/github
link: https://github.com/danvratil
nav:
- Home: index.md
- Building and Using QCoro: building-and-using.md
- Coroutines:
- Qt vs. co_await: coroutines/qt-vs-coawait.md
- co_await Explained: coroutines/coawait.md
- Further Reading: coroutines/reading.md
- Reference:
- QCoro::Task<T>: reference/task.md
- QCoro::coro(): reference/coro.md
- Supported Types:
- QAbstractSocket: reference/qabstractsocket.md
- QDBusPendingCall: reference/qdbuspendingcall.md
- QDBusPendingReply: reference/qdbuspendingreply.md
- QFuture: reference/qfuture.md
- QIODevice: reference/qiodevice.md
- QLocalSocket: reference/qlocalsocket.md
- QNetworkReply: reference/qnetworkreply.md
- QProcess: reference/qprocess.md
- QTimer: reference/qtimer.md
- QTcpServer: reference/qtcpserver.md
- Changelog: changelog.md
- About:
- License: about/license.md