forked from dekkerglen/CubeCobra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtexteditor.pug
27 lines (21 loc) · 826 Bytes
/
texteditor.pug
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
link(rel='stylesheet' href='/css/texteditor.css')
br
em To tag cards in post, use '[[cardname]]'. E.g. [[Island]]
.card
.card-header(style='padding: 0px;')
.toolbar
.row.no-gutters
a.toolbar-item(href='#' data-command='bold')
strong B
a.toolbar-item(href='#' data-command='italic')
em I
a.toolbar-item(href='#' data-command='underline')
u U
a.toolbar-item(href='#' data-command='strikethrough')
s S
a.toolbar-item(href='#' data-command='h5') H1
a.toolbar-item(href='#' data-command='h6') H2
a.toolbar-item(href='#' data-command='insertUnorderedList') ul
a.toolbar-item(href='#' data-command='insertOrderedList') ol
#editor(contenteditable='') !{editorvalue}
script(src='/js/texteditor.js')