-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarkdown.html
101 lines (87 loc) · 2.45 KB
/
markdown.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<title>GitHub Markdown Preview with VueJs - coligo</title>
<link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="github-markdown.css">
<style>
body {
background-color: #f4f7f7;
}
.header-text h4 {
color: #454552;
}
.header-text h1 {
color: #e85a71;
}
#editor,
#preview {
height: 500px;
max-height: 500px;
margin-bottom: 20px;
margin-top: 20px;
}
.panel {
overflow-y: auto;
max-height: 500px;
padding: 10px;
}
.container {
padding-bottom: 30px;
}
</style>
</head>
<body>
<div id="app" class="container">
<div class="row">
<div class="col-xs-12 header-text">
<h1>GitHub Markdown Preview</h1>
<h4>coligo.io</h4>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6">
<textarea id="editor" class="form-control" v-model="rawMarkdown"></textarea>
</div>
<div id="preview" class="col-xs-12 col-md-6">
<div class="panel panel-default">
<div class="panel-body">
<article class="markdown-body">
</article>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<button type="button" class="btn btn-primary pull-right" @click="renderPreview(this.rawMarkdown)">Preview</button>
</div>
</div>
</div>
<script src="jquery/jquery.js"></script>
<script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
<script src="vue/vue.js"></script>
<script src="vue-resource/vue-resource.min.js"></script>
<script src="md/lib/markdown.js"></script>
<script>
var vm = new Vue(
{
el : "#app",
data :
{
rawMarkdown : '#ÊäÈë·¨ ###³¤µãÈöµãµµ·¢',
renderedMarkdown : ''
},
methods :
{
function renderPreview(input) {
var innerHTML = markdown.toHTML(input);
renderedMarkdown = innerHTML;
}
}
}
}
);
</script>
</body>
</html>