-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsample.html
36 lines (36 loc) · 975 Bytes
/
sample.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
<html lang="en">
<head>
<link rel="stylesheet" href="pagedown.css">
<script type="text/javascript" src="sample-bundle.js"></script>
<style>
.wmd-button > span {
background-image: url(wmd-buttons.png);
}
</style>
</head>
<body>
<div class="container">
<div class="wmd-panel">
<div>
<div id="wmd-preview" class="wmd-preview">
</div>
</div>
<div>
<div id="wmd-button-bar">
</div>
</div>
<textarea
id="wmd-input"
class="wmd-input"
name="text"
placeholder="Type markdown here"
></textarea>
</div>
</div>
<script type="text/javascript">
(function () {
getPagedownEditor().run();
})();
</script>
</body>
</html>