-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmkdocs.yml
106 lines (100 loc) · 2.71 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
site_name: rich-click
repo_name: ewels/rich-click
repo_url: https://github.com/ewels/rich-click
site_url: https://ewels.github.io/rich-click/
edit_uri: edit/main/docs/
theme:
name: material
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
features:
- content.tabs.link
- content.code.copy
- navigation.tabs
- navigation.expand
# - navigation.indexes
favicon: images/favicon.png
logo: images/logo-square-large.png
palette:
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: navy
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: navy
toggle:
icon: material/lightbulb
name: Switch to dark mode
font:
text: Noto Sans
nav:
- Home: index.md
- "Live Style Editor": editor.md
- Documentation:
- Introduction to Click: documentation/introduction_to_click.md
- "Comparison of Click & rich-click": documentation/comparison_of_click_and_rich_click.md
- Configuration: documentation/configuration.md
- "Formatting & Styles": documentation/formatting_and_styles.md
- "Groups & Sorting": documentation/groups_and_sorting.md
- "<code>rich-click</code> CLI tool": documentation/rich_click_cli.md
- Accessibility: documentation/accessibility.md
# - API Reference: documentation/api_reference.md
- Blog: blog/index.md
- Changelog: changelog.md
- Contributing: contributing.md
markdown_extensions:
- toc:
permalink: true
- markdown.extensions.codehilite:
guess_lang: false
- admonition
- codehilite
- pymdownx.highlight
- pymdownx.inlinehilite
- extra
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format ""
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- markdown_include.include:
base_path: docs
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- search
- blog
- social:
cards_layout_options:
font_family: Kode Mono
- glightbox:
effect: fade
height: auto
zoomable: true
width: 100em
skip_classes:
- disable-glightbox
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
extra_css:
- css/termynal.css
- css/extra.css