-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmkdocs.yml
More file actions
126 lines (126 loc) · 3.67 KB
/
mkdocs.yml
File metadata and controls
126 lines (126 loc) · 3.67 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
site_name: wigglystuff
site_description: Creative AnyWidgets for notebooks
site_url: https://wigglystuff.dev
repo_url: https://github.com/koaning/wigglystuff
repo_name: koaning/wigglystuff
docs_dir: mkdocs
site_dir: site
theme:
name: material
custom_dir: mkdocs/overrides
logo: assets/logo.png
favicon: assets/logo.png
icon:
repo: fontawesome/brands/github
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.path
- toc.follow
- content.tabs.link
- content.code.annotate
- search.suggest
- search.highlight
- navigation.instant
palette:
scheme: default
primary: grey
accent: blue grey
font:
text: "PT Sans"
code: "Fira Mono"
nav:
- Overview: index.md
- Reference:
- Overview: reference/index.md
- Slider2D: reference/slider2d.md
- ChartPuck: reference/chart-puck.md
- ChartMultiSelect: reference/chart-multi-select.md
- ChartSelect: reference/chart-select.md
- ParallelCoordinates: reference/parallel-coords.md
- Matrix: reference/matrix.md
- SortableList: reference/sortable-list.md
- Paint: reference/paint.md
- ThreeWidget: reference/three-widget.md
- EdgeDraw: reference/edge-draw.md
- KeystrokeWidget: reference/keystroke.md
- WebkitSpeechToText: reference/talk.md
- ColorPicker: reference/color-picker.md
- CopyToClipboard: reference/copy-to-clipboard.md
- Tangle Widgets: reference/tangle.md
- GamepadWidget: reference/gamepad.md
- WebcamCapture: reference/webcam-capture.md
- CellTour: reference/cell-tour.md
- ImageRefreshWidget: reference/image-refresh.md
- HTMLRefreshWidget: reference/html-refresh.md
- ProgressBar: reference/progress-bar.md
- PulsarChart: reference/pulsar-chart.md
- ModuleTreeWidget: reference/module-tree.md
- WandbChart: reference/wandb-chart.md
- Neo4jWidget: reference/neo4j-widget.md
- ScatterWidget: reference/scatter-widget.md
- DiffViewer: reference/diff-viewer.md
- SplineDraw: reference/spline-draw.md
- TextCompare: reference/text-compare.md
- EnvConfig: reference/env-config.md
- AltairWidget: reference/altair-widget.md
- ApiDoc: reference/api-doc.md
- PlaySlider: reference/play-slider.md
- HoverZoom: reference/hover-zoom.md
- Utils: reference/utils.md
plugins:
- search
- section-index
- mkdocs-jupyter:
execute: false
include_source: true
- mkdocstrings:
handlers:
python:
paths: ["."]
options:
docstring_style: google
merge_init_into_class: true
show_source: true
show_root_heading: false
show_signature: true
show_signature_annotations: true
signature_crossrefs: true
separate_signature: true
heading_level: 2
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: "#"
- pymdownx.details
- pymdownx.snippets
- pymdownx.highlight:
anchor_linenums: true
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
extra_css:
- assets/stylesheets/extra.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/vdamario/wigglystuff
name: GitHub
- icon: material/notebook
link: https://marimo.io/gallery
name: Marimo gallery
watch:
- mkdocs.yml
- mkdocs