forked from internetarchive/wmd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wmd-test.html
32 lines (26 loc) · 830 Bytes
/
wmd-test.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
<!DOCTYPE html>
<html>
<head>
<title>Test WMD Page</title>
<link rel="stylesheet" type="text/css" href="wmd.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.wmd.min.js"></script>
</head>
<body>
<div style="width: 500px;">
<textarea id="xwmd-input" rows="5" style="width: 100%"></textarea>
</div>
<div style="width: 500px;">
<textarea id="ywmd-input" rows="5" style="width: 100%"></textarea>
</div>
<script type="text/javascript">
$().ready(function() {
$("textarea").wmd({
"preview": true,
"helpLink": "http://daringfireball.net/projects/markdown/",
"helpHoverTitle": "Markdown Help",
});
});
</script>
</body>
</html>