forked from erf/vis-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (34 loc) · 1.52 KB
/
index.html
File metadata and controls
46 lines (34 loc) · 1.52 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>vis-plugins</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>vis-plugins</h1>
<p>A collection of plugins and themes for the <a href="https://github.com/martanne/vis">vis</a> text editor.</p>
<p>Originally based on the <a href="https://github.com/martanne/vis/wiki">vis wiki</a>.</p>
<p>You are welcome to contribute via <a href="https://github.com/erf/vis-plugins">vis-plugins</a>.</p>
<p>Plugins can be installed <a href="https://github.com/martanne/vis/wiki/Plugins">manually</a> or using <a href="https://github.com/erf/vis-plug">vis-plug</a>.</p>
<br>
<form>
<label for="show-plugins">Plugins</label>
<input type="radio" id="show-plugins" name="plugin-type" onclick="set_plugin_type('plugin')" autocomplete="off">
<label for="show-themes">Themes</label>
<input type="radio" id="show-themes" name="plugin-type" onclick="set_plugin_type('theme')" autocomplete="off">
</form>
<br />
<input type="text" id="search" placeholder="Search">
<div id="plugins-container">
<h2 id="plugin-header">Plugins</h2>
<ul id="plugins" class="container"></ul>
</div>
<script type="text/javascript" src="plugins.js"></script>
<script type="text/javascript" src="themes.js"></script>
<script type="text/javascript" src="elite.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>