-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmkdocs.yml
46 lines (46 loc) · 1.32 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
site_name: atpbar
site_url: https://alphatwirl.github.io/atpbar
repo_url: https://github.com/alphatwirl/atpbar
repo_name: alphatwirl/atpbar
theme:
name: material
custom_dir: docs/overrides
icon:
logo: fontawesome/solid/bars
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.expand
- navigation.indexes
- navigation.sections
- navigation.tabs
- navigation.top
# - announce.dismiss
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: index.md
- Quick Start: quick.md
- User Guide:
- guide/index.md
- concurrent.futures:
- ThreadPoolExecutor: guide/thread-pool-executor.md
- ProcessPoolExecutor: guide/process-pool-executor.md
- threading.Thread: guide/threading-thread.md
- multiprocessing:
- Process: guide/multiprocessing-process.md
- Pool: guide/multiprocessing-pool.md
- Disabling progress bars: guide/disable.md
- Features:
- features/index.md
- break and exception: features/break-exception.md
- Jupyter: features/jupyter.md
- Non TTY: features/non-tty.md