-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzensical.toml
More file actions
64 lines (59 loc) · 1.96 KB
/
zensical.toml
File metadata and controls
64 lines (59 loc) · 1.96 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
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
[project]
site_name = "Data Designer Plugins"
site_url = "https://nvidia-nemo.github.io/DataDesignerPlugins/"
site_description = "Plugin authoring guide and documentation for Data Designer plugins."
site_author = "NVIDIA"
repo_url = "https://github.com/NVIDIA-NeMo/DataDesignerPlugins"
repo_name = "NVIDIA-NeMo/DataDesignerPlugins"
edit_uri = "edit/main/docs/"
copyright = "Copyright © 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved."
extra_css = ["stylesheets/extra.css"]
nav = [
{"Home" = "index.md"},
{"Plugin authoring" = "authoring.md"},
{"Development workflow" = "workflow.md"},
{"Plugin catalogs" = "catalogs.md"},
{"Catalog schema" = "catalog-schema.md"},
{"Releasing" = "releasing.md"},
{"Plugins" = [
{"Overview" = "plugins/index.md"},
# BEGIN GENERATED PLUGIN DOCS NAV
{"data-designer-github" = [
{"Overview" = "plugins/data-designer-github/index.md"},
{"Usage" = "plugins/data-designer-github/usage.md"},
]},
{"data-designer-retrieval-sdg" = [
{"Overview" = "plugins/data-designer-retrieval-sdg/index.md"},
]},
{"data-designer-template" = [
{"Overview" = "plugins/data-designer-template/index.md"},
{"Usage" = "plugins/data-designer-template/usage.md"},
]},
# END GENERATED PLUGIN DOCS NAV
]},
]
[project.theme]
language = "en"
favicon = "assets/images/ndd-plugins.png"
logo = "assets/images/ndd-plugins.png"
features = [
"content.action.edit",
"content.action.view",
"navigation.expand",
"navigation.path",
"navigation.sections",
"navigation.top",
"toc.follow",
]
[project.theme.icon]
repo = "fontawesome/brands/github"
[[project.theme.palette]]
scheme = "slate"
toggle.icon = "lucide/sun"
toggle.name = "Switch to light mode"
[[project.theme.palette]]
scheme = "default"
toggle.icon = "lucide/moon"
toggle.name = "Switch to dark mode"