-
Notifications
You must be signed in to change notification settings - Fork 44
/
mkdocs.yml
52 lines (46 loc) · 1.35 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
#
# Any suggestion for this file will be welcomed :)
#
site_name: luncliff/coroutine
site_description: "C++ 20 Coroutines in Action."
site_author: Park DongHa
site_url: https://luncliff.github.io/coroutine
repo_name: luncliff/coroutine
repo_url: http://github.com/luncliff/coroutine
copyright: "CC-BY-4.0 https://creativecommons.org/licenses/by/4.0/deed"
nav:
- PPT:
- C++ Korea 5th Seminar: ppt/Exploring-the-Cpp-Coroutine.md
- Articles:
- Exploring MSVC Coroutine: articles/exploring-msvc-coroutine.md
- Awaitable event using the coroutine, epoll and eventfd: articles/awaitable-event.md
- Designing the coroutine channel: articles/designing-the-channel.md
- Combining C++ coroutines and `pthread_create`: articles/combining-coroutines-and-pthread_create.md
- Russian Roulette and C++ Coroutines: articles/russian-roulette.md
- Code:
- Groups: modules.md
- Namespaces: namespaces.md
- Functions: functions.md
- Classes: classes.md
- Files: files.md
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- footnotes
theme:
name: "material"
extra:
search:
language: "en, kr"
palette:
primary: "white"
accent: "blue"
logo:
icon: "call_split"
extra:
social:
- type: "github"
link: "https://github.com/luncliff"