-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.17 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
36
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="TrendScript is a rule-based charting tool using an intuitive scripting language with real-time data visualization. Test financial strategies, plot out complex supply chains, or forecast how much you can make before you retire. Anything you can think of that is numbers-over-time."
/>
<title>TrendScript</title>
</head>
<body>
<div id="code-container">
<textarea
id="code-input"
autofocus
placeholder="Type your code here"
autocapitalize="off"
autocomplete="off"
spellcheck="false"
></textarea>
<div id="code-messages"></div>
<div id="menu">
<a href="https://github.com/ivw/trendscript" target="_blank">
<img src="/github-mark-white.svg" alt="GitHub" title="GitHub" /> TrendScript
</a>
</div>
</div>
<div id="output">
<svg id="chart">
<g id="chart-container"></g>
</svg>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>