-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
63 lines (52 loc) · 1.42 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
site_name: Async+ Docs
site_url: https://docs.asyncplus.codes/
site_description: Async+ documentation (web framework for Swift).
repo_name: Async+ GitHub
repo_url: http://github.com/async-plus/async-plus
edit_uri: https://github.com/async-plus/docs/edit/main/docs
copyright: "Copyright © Async+"
theme:
name: material
language: en
custom_dir: theme/
palette:
primary: black
accent: purple
favicon: assets/favicon.png
logo: assets/docs-logo.png
extra_css:
- stylesheets/extra.css
extra:
analytics:
provider: google
property: UA-221751024-1
font:
text: Roboto Slab
code: Source Code Pro
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/async_plus
- icon: fontawesome/brands/discord
link: https://discord.gg/vaAhGvvHpW
- icon: fontawesome/brands/github
link: https://github.com/async-plus
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- footnotes
- meta
- toc:
permalink: true
nav:
- Welcome: "index.md"
- Getting Started: "getting-started.md"
- Operations: "operations.md"
- Async/Throwing Interoperability: "async-or-throwing-contexts.md"
- Motivation and Common Patterns: "motivation-and-common-patterns.md"
- Cancellation: "cancellation.md"
- Migrating from PromiseKit: "migrating-from-promisekit.md"
- FAQ: "faq.md"