-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (49 loc) · 2.09 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Wikitextconverter by chris4403</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="./jquery-1.9.1.min.js"></script>
<script src="./wikitextconverter.js"></script>
<script src="./index.js"></script>
</head>
<body>
<div class="wrapper">
<header>
<h1>WikiTextConverter</h1>
<p></p>
<p class="view"><a href="https://github.com/chris4403/WikiTextConverter">View the Project on GitHub <small>chris4403/WikiTextConverter</small></a></p>
<ul>
<li><a href="https://github.com/chris4403/WikiTextConverter">View On <strong>GitHub</strong></a></li>
</ul>
</header>
<section>
<h3>Original</h3>
<textarea id="original" rows="20" style="width:500px;"></textarea>
<br>
<select id="type">
<option value="hatenak2textile">Hatena => Textile</option>
<option value="textile2hatenak">Textile => Hatena</option>
<option value="hatenak2markdown">Hatena => Markdown</option>
<option value="markdown2hatenak">Markdown => Hatena</option>
<option value="textile2markdown">Textile => Markdown</option>
<option value="markdown2textile">Markdown => Textile</option>
</select>
<h3>Converted</h3>
<textarea id="converted" rows="20" style="width:500px;"></textarea>
</section>
<footer>
<p>This project is maintained by <a href="https://github.com/chris4403">chris4403</a></p>
<p><small>Hosted on GitHub Pages — Theme by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<script src="javascripts/scale.fix.js"></script>
</body>
</html>