-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.html
More file actions
35 lines (32 loc) · 826 Bytes
/
example.html
File metadata and controls
35 lines (32 loc) · 826 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 PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>Markdown Helper - by @jamiebicknell - Github</title>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8' />
<style type='text/css'>
body {
font:normal 0.75em/16px Arial;
color:#555;
}
.wrapper {
margin:120px auto;
width:400px;
}
.wrapper textarea {
width:378px;
height:280px;
margin:0;
padding:10px;
border:1px solid #ccc;
font:normal 1em/1.2em Courier;
outline:none;
}
</style>
</head>
<body>
<div class='wrapper'>
<textarea name='input' onkeypress='return MarkdownHelper(this,event);'></textarea>
</div>
<script type='text/javascript' src='./markdown-helper.js'></script>
</body>
</html>