-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (26 loc) · 789 Bytes
/
index.html
File metadata and controls
35 lines (26 loc) · 789 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
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Frug's Javascript BBCode Parser</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css" >
</head>
<body>
<div class="container">
<span id="forkongithub"><a href="https://github.com/Frug/js-bbcode-parser">Fork me on GitHub</a></span>
<h1>Frug's Javascript BBCode Parser</h1>
<div>
<h2>Input</h2>
<div id="theButtons"></div>
<textarea id="mainInput"></textarea>
<button id="parseButton">Process</button>
</div>
<h2>Output</h2>
<div id="mainOutput"></div>
</div>
<script src="bbcode-config.js"></script>
<script src="bbcode-parser.js"></script>
<script src="demo-setup.js"></script>
</body>
</html>