forked from brikis98/wmd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·45 lines (38 loc) · 1.32 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
<html>
<head><meta charset="UTF-8">
<!--<title>Mark My Words</title> commented so declaring it in Markdown works-->
<link rel="stylesheet" type="text/css" media="screen" href="wmd.css"/>
<script type="text/javascript" src="wmd.js"></script>
<script type="text/javascript" src="showdown.js"></script>
<link rel="stylesheet" type="text/css" media="print" href="print.css">
</head>
<body>
<!-- <h1>Mark My Words</h1>-->
<div style="float:left; width: 430px">
<div id="notes-button-bar"></div>
<textarea id="notes" name="copy">
<!--markdown-->
Mark My Words <title> Mark My Words </title>
======================
#THIS IS A TEST
##HAD THIS BEEN ANYTHING ACTUAL WE WOULD NOT NEED TO POST THIS MESSAGE
## ☚ Select everything in the text box.
###Then delete it and start writing your own WMD-style markdown.
Take a [look at an example](example.html) ...
</textarea>
<input type="text" name="copy_html" value="" id="copy_html" style="height:30px"/>
</div>
<div>
<div id="notes-preview"></div>
</div>
<div style="clear:both"> </div>
<script type="text/javascript">
setup_wmd({
input: "notes",
button_bar: "notes-button-bar",
preview: "notes-preview",
output: "copy_html"
});
</script>
</body>
</html>