-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (26 loc) · 1.18 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<!--Import JS files; configured as TypeScript in tsconfig.json-->
<!--Prism.js-->
<script src="prism/prism.js"></script>
<link rel="stylesheet" href="prism/prism.css">
<!--Code-Input-->
<script src="code-input/code-input.js"></script>
<link rel="stylesheet" href="code-input/code-input.css">
<!--TypeScript, compiled from `.ts` to `.js` with console `tsc`, or equivalent-->
<!-- ☀️ There are three options for demo files: ☀️ -->
<script src="just-register.js"></script>
<!-- <script src="code-input/plugins/debounce-update.js"></script>
<script src="code-input/plugins/indent.js"></script>
<script src="code-input/plugins/special-chars.js"></script>
<script src="builtin-plugins.js"></script> -->
<!-- <script src="custom-plugin.js"></script> -->
<!--Please see the .TS files for more information.-->
</head>
<body>
<p>Please ensure you run <code>tsc</code> in the command line.</p>
<code-input lang="JavaScript" placeholder="Write Some JS!" template="default">console.log("Hello, World!");</code-input>
</body>
</html>