-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
61 lines (50 loc) · 2.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!doctype html>
<meta charset="utf-8">
<title>Visdown - Markdown for Visualisation</title>
<meta name="description" content="Create Simple Visualisation Charts with Markdown">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i|PT+Serif:700,700i|Roboto+Mono:400,400i,700" rel="stylesheet"> -->
<link rel="stylesheet" href="/static/css/codemirror.css">
<!-- <link rel="stylesheet" href="/static/css/github-markdown.css"> -->
<link rel="stylesheet" href="/static/css/visdown.css">
<!-- Code Mirror Editor Dependencies -->
<script src="/static/lib/codemirror.js"></script>
<script src="/static/lib/markdown.js"> </script>
<!-- Vega, Vega-Lite Dependencies -->
<script src="https://cdn.jsdelivr.net/npm/vega@5"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-lite@5"></script>
<script src="https://cdn.jsdelivr.net/npm/vega-embed@6"></script>
<!-- <script src="/static/lib/vega.min.js"></script>
<script src="/static/lib/vega-lite.min.js"></script>
<script src="/static/lib/vega-embed.min.js"></script> -->
<!-- Markdown Dependencies -->
<script src="/static/lib/marked.min.js"></script>
<script src="/static/lib/yaml.min.js"></script>
<body class="yin">
<header>
<a href="/"><img class="logo" src="/static/img/visdown.svg"></a>
<nav>
<img class="icon" id="view" src="/static/img/view.svg"></button>
<img class="icon" id="edit" style="display:none;" src="/static/img/pencil.svg">
<!-- <a href="#data"><img class="icon" src="/static/img/datasets.svg"></a>
<img class="icon" id="contrast" src="/static/img/contrast.svg"> -->
<a href="http://amitkaps.com/interactive" target="_blank"><img class="icon" src="/static/img/share.svg"></a>
<div class="icons-bottom">
<a href="http://twitter.com/amitkaps" target="_blank">
<img class="icon right" src="/static/img/twitter.svg"></a>
<a href="http://github.com/amitkaps/visdown" target="_blank">
<img class="icon right" src="/static/img/github.svg"></a>
</div>
</nav>
</header>
<main id="editor">
<section id="input">
<textarea id="input-text"></textarea>
</section>
<section id="output" class="markdown-body"></section>
</main>
<script src="/src/datum.js"></script>
<script src="/src/visdown.js"></script>
<script src="js/editor.js"></script>
<!-- <script src="js/ui.js"></script> -->
</body>