-
-
Notifications
You must be signed in to change notification settings - Fork 908
Expand file tree
/
Copy pathdefault.htm
More file actions
40 lines (40 loc) · 1.68 KB
/
default.htm
File metadata and controls
40 lines (40 loc) · 1.68 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8"/>
<link href="default.css" rel="stylesheet" type="text/css"/>
<link href="favicon.svg" rel="icon" type="image/svg+xml"/>
<meta name="description" content="Demo for markdownlint, a Node.js style checker and lint tool for Markdown/CommonMark files."/>
<title>markdownlint demo</title>
<base target="_blank"/>
</head>
<body>
<div class="flex-rows">
<div class="flex-columns inset">
<header>markdownlint demo <span id="version" class="detail"></span></header>
<div class="flex-fill"></div>
<form>
<input id="openFile" type="file"/>
</form>
</div>
<div class="flex-fill flex-columns inset-side">
<textarea id="markdown" class="flex-fill outlined overflow-auto-scroll" autofocus="autofocus" spellcheck="true"></textarea>
<div id="markup" class="flex-fill outlined overflow-auto-scroll"></div>
</div>
<div class="flex-fill flex-columns inset-side">
<pre id="numbered" class="flex-fill outlined overflow-auto-scroll"></pre>
<div id="violations" class="flex-fill outlined overflow-auto-scroll"></div>
</div>
<div class="flex-columns inset">
<footer><a href="https://github.com/DavidAnson/markdownlint">markdownlint project on GitHub</a></footer>
<div class="flex-fill"></div>
<footer><a href="#" id="copyLink">Copy Link</a></footer>
<div class="flex-fill"></div>
<footer>Copyright © <a href="https://dlaa.me/">David Anson</a></footer>
</div>
</div>
<script src="markdown-it.min.js"></script>
<script src="markdownlint-browser.min.js"></script>
<script src="default.js"></script>
</body>
</html>