-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 764 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 764 Bytes
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
<!doctype html>
<html>
<head>
<link rel="shortcut icon" href="#">
<title>MiniScript Web-Terminal</title>
<link rel="stylesheet" href="dist/miniscript-web-term.css"/>
<script>
// You can set Terminal options as documented here:
// https://xtermjs.org/docs/api/terminal/classes/terminal/#constructor
window.terminalOptions = {
theme: {
background: "#191A19",
foreground: "#F5F2E7",
},
// fontSize: 16,
// cursorBlink: true, // does not seem to work
cursorStyle: "block"
};
</script>
</head>
<!-- Change the location of your entry MiniScript file below -->
<body data-src-file="example/main.ms">
<div id="terminal"></div>
<script src="dist/miniscript-web-term.js"></script>
</body>
</html>