-
Notifications
You must be signed in to change notification settings - Fork 3
/
script.js
executable file
·57 lines (56 loc) · 1.08 KB
/
script.js
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
/* Add buttons related to Markdown to the toolbar */
if (typeof window.toolbar !== 'undefined') {
toolbar[toolbar.length] = {
type: "insert",
title: "Markdown Doctype",
icon: "../../plugins/commonmark/images/markdown.png",
key: "",
insert: "<!DOCTYPE markdown>",
block: "true"
};
toolbar[toolbar.length] = {
type: "picker",
title: "Markdown syntax",
icon: "../../plugins/commonmark/images/markdown_white.png",
class: "pk_hl",
key: "",
list: [
{
type: "format",
title: toolbar[0].title,
icon: "bold.png",
key: "",
open: "**",
close: "**",
block: "false"
},
{
type: "format",
title: toolbar[1].title,
icon: "italic.png",
key: "",
open: "*",
close: "*",
block: "false"
},
{
type: "format",
title: toolbar[3].title,
icon: "mono.png",
key: "",
open: "`",
close: "`",
block: "false"
},
{
type: "format",
title: toolbar[4].title,
icon: "bold.png",
key: "",
open: "~~",
close: "~~",
block: "false"
}
]
};
}