UNPKG

3.05 kBJSONView Raw
1{
2 "plugins": [
3 {
4 "name": "Bold",
5 "className": "Bold",
6 "description": "Implements bold formatting support. It is a part of the basic text styles package.",
7 "docs": "features/basic-styles.html",
8 "path": "src/bold.js",
9 "uiComponents": [
10 {
11 "type": "Button",
12 "name": "bold",
13 "iconPath": "@ckeditor/ckeditor5-core/theme/icons/bold.svg"
14 }
15 ],
16 "htmlOutput": [
17 {
18 "elements": "strong"
19 }
20 ]
21 },
22 {
23 "name": "Code",
24 "className": "Code",
25 "description": "Implements inline code formatting support. It is a part of the basic text styles package.",
26 "docs": "features/basic-styles.html",
27 "path": "src/code.js",
28 "uiComponents": [
29 {
30 "type": "Button",
31 "name": "code",
32 "iconPath": "theme/icons/code.svg"
33 }
34 ],
35 "htmlOutput": [
36 {
37 "elements": "code"
38 }
39 ]
40 },
41 {
42 "name": "Italic",
43 "className": "Italic",
44 "description": "Implements italic formatting support. It is a part of the basic text styles package.",
45 "docs": "features/basic-styles.html",
46 "path": "src/italic.js",
47 "uiComponents": [
48 {
49 "type": "Button",
50 "name": "italic",
51 "iconPath": "theme/icons/italic.svg"
52 }
53 ],
54 "htmlOutput": [
55 {
56 "elements": "i"
57 }
58 ]
59 },
60 {
61 "name": "Strikethrough",
62 "className": "Strikethrough",
63 "description": "Implements strikethrough formatting support. It is a part of the basic text styles package.",
64 "docs": "features/basic-styles.html",
65 "path": "src/strikethrough.js",
66 "uiComponents": [
67 {
68 "type": "Button",
69 "name": "strikethrough",
70 "iconPath": "theme/icons/strikethrough.svg"
71 }
72 ],
73 "htmlOutput": [
74 {
75 "elements": "s"
76 }
77 ]
78 },
79 {
80 "name": "Subscript",
81 "className": "Subscript",
82 "description": "Implements subscript formatting support. It is a part of the basic text styles package.",
83 "docs": "features/basic-styles.html",
84 "path": "src/subscript.js",
85 "uiComponents": [
86 {
87 "type": "Button",
88 "name": "subscript",
89 "iconPath": "theme/icons/subscript.svg"
90 }
91 ],
92 "htmlOutput": [
93 {
94 "elements": "sub"
95 }
96 ]
97 },
98 {
99 "name": "Superscript",
100 "className": "Superscript",
101 "description": "Implements superscript formatting support. It is a part of the basic text styles package.",
102 "docs": "features/basic-styles.html",
103 "path": "src/superscript.js",
104 "uiComponents": [
105 {
106 "type": "Button",
107 "name": "superscript",
108 "iconPath": "theme/icons/superscript.svg"
109 }
110 ],
111 "htmlOutput": [
112 {
113 "elements": "sup"
114 }
115 ]
116 },
117 {
118 "name": "Underline",
119 "className": "Underline",
120 "description": "Implements underline formatting support. It is a part of the basic text styles package.",
121 "docs": "features/basic-styles.html",
122 "path": "src/underline.js",
123 "uiComponents": [
124 {
125 "type": "Button",
126 "name": "underline",
127 "iconPath": "theme/icons/underline.svg"
128 }
129 ],
130 "htmlOutput": [
131 {
132 "elements": "u"
133 }
134 ]
135 }
136 ]
137}