-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
76 lines (70 loc) · 1.85 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
site_name: async_app
site_description: A simple framework to create async apps in Python.
site_author: jneines
site_url: https://jneines.github.io/async_app
repo_url: https://github.com/jneines/async_app
copyright: "Copyright © 2024 - 2024 Jens Nie"
theme:
name: readthedocs
icon:
repo: fontawesome/brands/github
# logo: assets/logo.png
# favicon: assets/favicon.png
features:
- navigation.instant
- navigation.tracking
- navigation.top
- search.highlight
- search.share
font:
text: Google Sans
code: Regular
plugins:
- search
- mkdocstrings
- git-revision-date
- git-revision-date-localized:
enable_creation_date: true
type: timeago
# - pdf-export
- mkdocs-jupyter:
include_source: True
ignore_h1_titles: True
execute: True
allow_errors: false
ignore: ["conf.py"]
execute_ignore: ["*ignore.ipynb"]
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- pymdownx.superfences
- pymdownx.highlight:
linenums: true
- toc:
permalink: true
# extra:
# analytics:
# provider: google
# property: UA-XXXXXXXXX-X
nav:
- Home: index.md
- Installation: installation.md
- Usage: usage.md
- Contributing: contributing.md
- FAQ: faq.md
- Changelog: changelog.md
- Report Issues: https://github.com/jneines/async_app/issues
- API Reference:
- app module: app.md
- app_factory module: app_factory.md
- config module: config.md
- logger module: logger.md
- messenger module: messenger.md
- patterns module: patterns.md
- state module: state.md
- tools module: tools.md