-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
/
Copy pathmarkdown.html
66 lines (58 loc) · 1.27 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
<script src="../../node_modules/marked/marked.min.js"></script>
<script src="../../node_modules/lodash/lodash.min.js"></script>
<script src="../../dist/vue.min.js"></script>
<div id="editor">
<textarea :value="input" @input="update"></textarea>
<div v-html="output"></div>
</div>
<script>
const { ref, computed } = Vue
new Vue({
setup() {
const input = ref('# hello')
const output = computed(() => marked.marked(input.value))
const update = _.debounce(e => {
input.value = e.target.value
}, 300)
return {
input,
output,
update
}
}
}).$mount('#editor')
</script>
<style>
html,
body,
#editor {
margin: 0;
height: 100%;
font-family: 'Helvetica Neue', Arial, sans-serif;
color: #333;
}
textarea,
#editor div {
display: inline-block;
width: 49%;
height: 100%;
vertical-align: top;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0 20px;
}
textarea {
border: none;
border-right: 1px solid #ccc;
resize: none;
outline: none;
background-color: #f6f6f6;
font-size: 14px;
font-family: 'Monaco', courier, monospace;
padding: 20px;
}
code {
color: #f66;
}
</style>