forked from Q42/meteor-autoform-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
markdown.html
26 lines (24 loc) · 919 Bytes
/
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
<template name="afMarkdown">
<section class="markdownControls">
<select class="markdownHeader form-control">
<option value="">headers</option>
<option value="#"># header 1</option>
<option value="##">## header 2</option>
<option value="##">### header 3</option>
</select>
<button class="markdownBold select btn">**bold**</button>
<button class="markdownItalic select btn">*italic*</button>
<button class="markdownList select btn">- list</button>
<a href="https://help.github.com/articles/markdown-basics/" target="_blank">help</a>
</section>
<div class="flexcontainer">
<section class="markdownContent">
<textarea class="form-control markdownInput" {{atts}}>{{value}}</textarea>
</section>
<section class="markdownPreview">
<span class="form-control preview">
{{{markdownText}}}
</span>
</section>
</div>
</template>