-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.mjs
More file actions
116 lines (112 loc) · 4.28 KB
/
Copy pathconfig.mjs
File metadata and controls
116 lines (112 loc) · 4.28 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
import { defineConfig } from "vitepress";
// https://vitepress.dev/reference/site-config
export default defineConfig({
base: "/QuickView",
title: "The QuickView Family",
description:
"How to use the QuickView family of tools to look at Earth system simulation data",
head: [["link", { rel: "stylesheet", href: "custom.css" }]],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
search: {
provider: "local",
},
logo: "/icon-full.png",
nav: [
{ text: "Home", link: "/" },
{ text: "News", link: "/webnews" },
{ text: "Gallery", link: "/gallery/" },
{ text: "User's Guide", link: "/guides/reminders" },
{ text: "At NERSC", link: "/nersc/index" },
{ text: "Resources", link: "/resources" },
],
sidebar: {
"/nersc/": [
{
text: "At NERSC",
items: [
{ text: "Getting Started", link: "/nersc/index" },
{
text: "Developers' Installation",
link: "/nersc/developers_installation",
},
{ text: "User's Installation", link: "/nersc/users_installation" },
],
},
{
text: "Step-by-step Guides",
items: [
{ text: "JupyterHub", link: "/nersc/jupyter_at_nersc" },
{ text: "QuickView", link: "/nersc/perlmutter-run-quickview" },
{
text: "QuickCompare",
link: "/nersc/perlmutter-run-quickcompare",
},
],
},
],
"/guides/": [
{
text: "Introduction",
items: [
{ text: "Overview", link: "/guides/reminders" },
{ text: "Connecitiviy Files", link: "/guides/connectivity" },
{ text: "Simulation Files", link: "/guides/simulation_data" },
{ text: "Install and Launch", link: "/guides/install_and_launch" },
],
},
{
text: "QuickView",
items: [
{ text: "What is QuickView?", link: "/guides/quickview/index" },
{ text: "Getting Started", link: "/guides/quickview/getting_started" },
{ text: "UI Overview", link: "/guides/quickview/ui_overview" },
{ text: "Keyboard Shortcuts", link: "/guides/quickview/shortcuts" },
{ text: "File Selection", link: "/guides/quickview/file_selection", },
{ text: "Variable Selection", link: "/guides/quickview/variable_selection", },
{ text: "Slice Selection", link: "/guides/quickview/slice_selection", },
{ text: "Viewport Layout", link: "/guides/quickview/viewport_layout", },
{ text: "Individual Views", link: "/guides/quickview/individual_views", },
{ text: "Miscellaneous", link: "/guides/quickview/miscellaneous" },
],
},
{
text: "QuickCompare",
items: [
{ text: "What is QuickCompare?", link: "/guides/quickcompare/index", },
{ text: "Getting Started", link: "/guides/quickcompare/getting_started" },
{ text: "UI Overview", link: "/guides/quickcompare/ui_overview_and_shortcuts" },
{ text: "Modes of Comparison", link: "/guides/quickcompare/modes_of_comparison", },
{ text: "Variables and Slices", link: "/guides/quickcompare/variable_and_slice_selection", },
{ text: "Resuming an Analysis", link: "/guides/quickcompare/save_resume_analysis", },
{ text: "Miscellaneous", link: "/guides/quickcompare/miscellaneous" },
],
},
{
text: "Tools In Development",
items: [{ text: "SiteView" }, { text: "CondiDiagViewer" }],
},
{
text: "For App Developers",
items: [
{ text: "Setup", link: "/guides/dev/setup" },
{ text: "Continuous Integration", link: "/guides/dev/ci" },
],
},
],
},
socialLinks: [
{ icon: "github", link: "https://github.com/Kitware/QuickView" },
],
},
markdown: {
// Options for the Table of Contents plugin
toc: {
level: [2, 3], // Only include <h2> and <h3> in the TOC
},
// Options for heading anchors (optional)
anchor: {
permalink: true, // Enables clickable anchor links on headings
},
},
});