-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
46 lines (45 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>h2m - converting HTML to Markdown</title>
<meta name="description" content="converting HTML to Markdown" />
<meta name="keywords" content="HTML, Markdown html2markdown, h2m" />
<link rel="shortcut icon" href="./design/favicon.ico" />
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<div class="converter">
<div class="html-editor">
<textarea id="html" placeholder="input html here"></textarea>
</div>
<div class="markdown-editor">
<textarea id="markdown" placeholder="out markdown here"></textarea>
<div class="markdown-previewer"></div>
<div class="preview-toggle">
<label><input type="checkbox" id="preview-checker" />preview</label>
<label><input type="radio" checked name="implement" value="CommonMark"/>CommonMark</label>
<label><input type="radio" name="implement" value="MarkdownExtra"/>MarkdownExtra</label>
</div>
</div>
</div>
<aside class="author">
<h1><a href="https://github.com/island205/h2m"><img alt="h2m" title="h2m" src="./design/[email protected]" /></a></h1>
<p>converting HTML to Markdown</p>
<p>
made by
<a href="https://github.com/island205">@island205</a>
</p>
<p>
<iframe src="https://ghbtns.com/github-btn.html?user=island205&repo=h2m&type=star&count=true" frameborder="0" scrolling="0" width="80px" height="20px"></iframe>
<iframe src="https://ghbtns.com/github-btn.html?user=island205&repo=h2m&type=fork&count=true" frameborder="0" scrolling="0" width="80px" height="20px"></iframe>
</p>
<p style="color: #999;">
Can't be convert? welcome to submit an <a id="submit-a-issue" href="https://github.com/island205/h2m/issues/new" target="_blank">issue</a>.
</p>
</aside>
<script type="text/javascript" src="./assets/markdown.js"></script>
<script type="text/javascript" src="./dist/h2m.js"></script>
<script type="text/javascript" src="./assets/converter.js"></script>
</body>
</html>