-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
40 lines (40 loc) · 1.59 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>BBCode -> Markdown (Reddit)</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.0/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
<script type="text/javascript" src="index.js"></script>
</head>
<body>
<div id="fork" class="text-center">
<a href="http://github.com/JonDum/BBCode-To-Markdown-Converter">Fork me on Github</a>
</div>
<div class="container-fluid">
<div class="row">
<div class="col text-center">
<h1>BBCode to Markdown (Reddit) Converter</h1>
<h3><small class="text-muted">Paste your BBCode into the left, Markdown appears on the right.</small></h3>
<h3><small class="text-primary">Please keep in mind that not all BBCode constructs are implemented yet.</small></h3><br/>
</div>
</div>
</div>
<div class="container-fluid" id="boxing">
<div class="row">
<div class="col">
<textarea id="left_ta" value="" onChange="convert()" onKeyUp="convert()"></textarea>
</div>
<div class="col-md-auto">
>
</div>
<div class="col">
<textarea id="right_ta"></textarea>
<button type="button" class="btn btn-primary btn-lg btn-block" id="copybtn">Copy Above Text</button>
</div>
</div>
</div>
<script type="text/javascript" src="copy.min.js"></script>
</body>
</html>