-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 2.39 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 2.39 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
<!DOCTYPE html>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Multi test</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap">
<link rel="stylesheet" type="text/css" href="./_observablehq/style.css">
<link rel="modulepreload" href="./_observablehq/runtime.js">
<script type="module">
import {define} from "./_observablehq/client.js";
define({id: "1bcb5df5", inputs: ["FileAttachment"], outputs: ["f1"], files: [{"name":"file1.csv","mimeType":"text/csv","path":"./file1.csv"}], body: (FileAttachment) => {
const f1 = FileAttachment("file1.csv").csv();
return {f1};
}});
define({id: "db071921", inputs: ["Input","f1","display"], body: (Input,f1,display) => {
display((
Input.table(f1)
))
}});
define({id: "aaa5c01d", outputs: ["f2"], files: [{"name":"./file2.csv","mimeType":"text/csv","path":"./file2.csv"}], body: () => {
const f2 = fetch("./file2.csv");
return {f2};
}});
</script>
<input id="observablehq-sidebar-toggle" type="checkbox">
<label id="observablehq-sidebar-backdrop" for="observablehq-sidebar-toggle"></label>
<nav id="observablehq-sidebar">
<ol>
<li class="observablehq-link observablehq-link-active"><a href="./">Home</a></li>
</ol>
<ol>
<li class="observablehq-link"><a href="./subsection/">Sub-Section</a></li>
<li class="observablehq-link observablehq-link-active"><a href="./">Multi test</a></li>
</ol>
</nav>
<script>{
const toggle = document.querySelector("#observablehq-sidebar-toggle");
const initialState = localStorage.getItem("observablehq-sidebar");
if (initialState) toggle.checked = initialState === "true";
else toggle.indeterminate = true;
}</script>
<div id="observablehq-center">
<main id="observablehq-main" class="observablehq">
<h1 id="multi-test" tabindex="-1"><a class="observablehq-header-anchor" href="#multi-test">Multi test</a></h1>
<div id="cell-1bcb5df5" class="observablehq observablehq--block"></div>
<div id="cell-db071921" class="observablehq observablehq--block"></div>
<div id="cell-aaa5c01d" class="observablehq observablehq--block"></div>
</main>
<footer id="observablehq-footer">
<nav><a rel="next" href="./subsection/"><span>Sub-Section</span></a></nav>
<div>© 2023 Observable, Inc.</div>
</footer>
</div>