-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
78 lines (71 loc) · 1.97 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
site_name: panel-copy-paste
site_description: Extends HoloViz Panel with functionality to copy to and paste from the clipboard
site_author: Marc Skov Madsen
repo_url: https://github.com/awesome-panel/panel-copy-paste
repo_name: awesome-panel/panel-copy-paste
theme:
name: material
logo: 'assets/logo.svg'
features:
- content.code.copy
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: blue
toggle:
icon: material/brightness-4
name: Switch to light mode
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.snippets:
url_download: true
- pymdownx.inlinehilite
- pymdownx.superfences:
custom_fences:
- name: python
class: 'highlight'
validator: !!python/name:mkdocs_pycafe.validator
format: !!python/object/apply:mkdocs_pycafe.formatter
kwds:
type: panel
requirements: |
panel-copy-paste>=0.0.4
link_text: |
► Run
- admonition
plugins:
- search
- mkdocstrings:
handlers:
python:
paths:
- src
options:
docstring_style: numpy
show_if_no_docstring: true
filters:
- "!^_"
watch:
- docs
- src/panel_copy_paste
nav:
- Home: index.md
- Copy Button: copy-button.md
- Paste Buttons: paste-buttons.md
- Reference: reference/panel_copy_paste.md
- Tips & Tricks: tips-and-tricks.md