-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
mkdocs.yml
43 lines (43 loc) · 1.24 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
site_name: "Python Launcher for Unix"
site_url: "https://python-launcher.app"
repo_url: "https://github.com/brettcannon/python-launcher"
edit_uri: "https://github.dev/brettcannon/python-launcher/blob/main/docs/"
site_description: "Launch your Python interpreter the lazy/smart way!"
site_author: "Brett Cannon"
copyright: "© 2022 Brett Cannon"
theme:
name: "material"
icon:
logo: octicons/terminal-16
features:
- "navigation.sections"
- "navigation.tabs"
- "navigation.tabs.sticky"
- "toc.integrate"
markdown_extensions:
- "admonition"
- "pymdownx.details"
- "pymdownx.magiclink"
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
extra:
social:
- icon: fontawesome/solid/rss
link: https://snarky.ca/
- icon: fontawesome/brands/github
link: https://github.com/brettcannon/
- icon: fontawesome/brands/mastodon
link: https://fosstodon.org/@brettcannon
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/drbrettcannon/
nav:
- Overview: "index.md"
- "install.md"
- "cli.md"
- FAQ: "faq.md"
- "development.md"