-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathobservablehq.config.js
More file actions
126 lines (122 loc) · 4.46 KB
/
Copy pathobservablehq.config.js
File metadata and controls
126 lines (122 loc) · 4.46 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
// See https://observablehq.com/framework/config for documentation.
export default {
// The app’s title; used in the sidebar and webpage titles.
title: "Noita Bartender",
pages: [
{
name: "Mixology",
pages: [
{ name: "Reactions Finder", path: "/reactions" },
{ name: "Reactions Graph", path: "/reactions_graph_finder" },
],
},
{
name: "Materials properties",
pages: [
// { name: "Materials Explorer", path: "/materials" },
{ name: "Hardness (β)", path: "/hardness" },
{ name: "Density (β)", path: "/density" },
{ name: "Durability (β)", path: "/durability" },
{ name: "Glow (β)", path: "/glow" },
],
},
// {
// name: "Spells",
// pages: [{ name: "Spells' Digging Ability", path: "/digging" }],
// },
// {
// name: "Work in progress",
// pages: [
// { name: "Materials Distribution Graph", path: "/exploration" },
// { name: "Streamer Wands Integration", path: "/onlywands_integration" },
// { name: "Status Effects", path: "/status_effects" },
// { name: "Material Tags", path: "/tags" },
// { name: "WIP creatures", path: "/creatures" },
// ],
// },
{
name: "Upcoming Features",
pages: [{ name: "The Future", path: "/upcoming" }],
},
{
name: "Main Website",
pages: [
{
name: "Noita Bartender",
path: "https://runfast.stream/",
},
],
},
{
name: "Source Code",
pages: [
{
name: "GitHub",
path: "https://github.com/acidflow-noita/bartender/",
},
],
},
{
name: "Credits",
pages: [{ name: "Thanks", path: "/thanks" }],
},
],
// Content to add to the head of the page, e.g. for a favicon:
head: `<link rel="icon" href="favicon.ico" type="image/x-icon">
<style>
nav a[href="https://runfast.stream/"],
nav a[href="https://runfast.stream/"]:hover,
nav a[href="https://runfast.stream/"]:focus,
nav a[href="https://runfast.stream/"]:active {
display: flex !important;
align-items: center !important;
width: 100% !important;
text-indent: -9999px !important;
overflow: hidden !important;
}
nav a[href="https://runfast.stream/"]::before {
content: "" !important;
display: inline-block !important;
width: 100% !important;
height: 1.2em !important;
background-image: url("https://noita-bartender-images.acidflow.stream/images/logo/runfast-logo.svg") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
background-position: left center !important;
}
nav a[href="https://github.com/acidflow-noita/bartender/"],
nav a[href="https://github.com/acidflow-noita/bartender/"]:hover,
nav a[href="https://github.com/acidflow-noita/bartender/"]:focus,
nav a[href="https://github.com/acidflow-noita/bartender/"]:active {
display: flex !important;
align-items: center !important;
gap: 0.5em !important;
width: 100% !important;
}
nav a[href="https://github.com/acidflow-noita/bartender/"]::before {
content: "" !important;
display: inline-block !important;
width: 1.2em !important;
height: 1.2em !important;
background-image: url("https://noita-bartender-images.acidflow.stream/images/icons/github.svg") !important;
background-size: contain !important;
background-repeat: no-repeat !important;
background-position: center !important;
}
</style>`,
// The path to the source root.
root: "src",
// Some additional configuration options and their defaults:
theme: ["ocean-floor", "alt", "wide"],
home: '<img src="https://noita-bartender-images.acidflow.stream/images/logo/bartender_logo.svg" alt="Noita Bartender">', // the content of the home page, which is shown in the sidebar
footer:
'<div style="display: flex; align-items: center; gap: 2px;">Made by<a href="https://www.twitch.tv/WUOTE"><img src="https://noita-bartender-images.acidflow.stream/images/logo/WUOTE_LOGO.svg" style="width:100px;"></a>',
sidebar: true, // whether to show the sidebar
toc: false, // whether to show the table of contents
pager: false, // whether to show previous & next links in the footer
output: "dist", // path to the output root for build
search: false, // activate search
linkify: true, // convert URLs in Markdown to links
typographer: true, // smart quotes and other typographic improvements
cleanUrls: true, // drop .html from URLs
};