-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzensical.toml
More file actions
157 lines (130 loc) · 4.1 KB
/
zensical.toml
File metadata and controls
157 lines (130 loc) · 4.1 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
[project]
site_name = "panel-reactflow"
site_description = ""
site_author = "HoloViz Developers"
site_url = "https://lumen.holoviz.org"
site_dir = "builtdocs"
repo_url = "https://github.com/panel-extensions/panel-reactflow"
repo_name = "panel-extensions/panel-reactflow"
edit_uri = "edit/main/docs/"
extra_css = ["assets/extra.css"]
extra_javascript = ["assets/extra.js"]
nav = [
{"Home" = "index.md"},
{"Quickstart" = "quickstart.md"},
{"How-to" = [
{"Define Nodes & Edges" = "how-to/define-nodes-edges.md"},
{"Declare Node & Edge Types" = "how-to/declare-types.md"},
{"Define Editors" = "how-to/define-editors.md"},
{"Embed Views in Nodes" = "how-to/embed-views-in-nodes.md"},
{"Style Nodes & Edges" = "how-to/style-nodes-edges.md"},
{"React to Events" = "how-to/react-to-events.md"}
]},
{"Examples" = [
{"Gallery" = "examples/index.md"},
{"Advanced" = "examples/advanced.md"},
{"Custom Editor" = "examples/custom-editor.md"},
{"Edge Editors" = "examples/edge-editors.md"},
{"Node/Edge Instances" = "examples/node-edge-instances.md"},
{"Schema Types" = "examples/schema-types.md"},
{"Simple" = "examples/simple.md"},
{"ThreeJS Viewer" = "examples/threejs-viewer.md"},
{"ThreeJS Viewer (Instances)" = "examples/threejs-viewer-instances.md"}
]},
{"Reference" = "reference/panel_reactflow.md"},
{"Releases" = "releases.md"}
]
# Theme configuration
[project.theme]
variant = "modern" # Use "classic" if you want the Material for MkDocs look
logo = "assets/logo.svg"
favicon = "assets/favicon.ico"
features = [
"announce.dismiss",
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.tooltips",
"navigation.footer",
"navigation.indexes",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.instant.progress",
"navigation.sections",
"navigation.top",
"navigation.tracking",
"search.highlight",
"search.share",
"search.suggest",
"toc.follow"
]
# Color palette
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
primary = "custom"
accent = "blue"
[project.theme.palette.toggle]
icon = "material/brightness-7"
name = "Switch to dark mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
primary = "custom"
accent = "black"
[project.theme.palette.toggle]
icon = "material/brightness-4"
name = "Switch to light mode"
# Markdown extensions
[project.markdown_extensions.toc]
permalink = true
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.superfences]
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.admonition]
[project.markdown_extensions.pymdownx.snippets]
url_download = true
base_path = ["."]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.pymdownx.emoji]
emoji_index = "zensical.extensions.emoji.twemoji"
emoji_generator = "zensical.extensions.emoji.to_svg"
[project.markdown_extensions.attr_list]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.abbr]
[project.markdown_extensions.def_list]
# Plugins
[project.plugins]
search = {}
typeset = {}
literate_nav = {}
[project.plugins.mkdocstrings.handlers.python]
paths = ["."]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "numpy"
show_if_no_docstring = true
filters = ["!^_"]
# Extra configuration
[project.extra]
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/panel-extensions/panel-reactflow"
[[project.extra.social]]
icon = "fontawesome/brands/discourse"
link = "https://discourse.holoviz.org/c/panel/"
[[project.extra.social]]
icon = "fontawesome/brands/discord"
link = "https://discord.com/invite/rb6gPXbdAr"
[[project.extra.social]]
icon = "fontawesome/brands/twitter"
link = "https://twitter.com/holoviz_org"
[[project.extra.social]]
icon = "fontawesome/brands/python"
link = "https://pypi.org/project/panel-reactflow/"