-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
38 lines (31 loc) · 836 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>replace-this-with-the-track-name playground</title>
</head>
<body>
<div id="editor"></div>
<script type="module">
import { EditorView, basicSetup } from "codemirror";
import { replace-this-with-the-track-slug } from "./src/index.ts";
const doc = `
# Booleans
true
false
# Integers
5
1000
# Floating-point numbers
3.2
1.134123
`
new EditorView({
doc: doc,
extensions: [basicSetup, replace-this-with-the-track-slug()],
parent: document.querySelector("#editor"),
});
</script>
</body>
</html>