This repository has been archived by the owner on Jul 5, 2024. It is now read-only.
forked from ckeditor/ckeditor5-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathckeditor5-metadata.json
149 lines (149 loc) · 3.53 KB
/
ckeditor5-metadata.json
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"plugins": [
{
"name": "List",
"className": "List",
"description": "Implements bulleted and numbered list features. Add the to-do list plugin to bring support for inserting interactive checkboxes.",
"docs": "features/lists/lists.html",
"path": "src/list.js",
"uiComponents": [
{
"type": "Button",
"name": "numberedList",
"iconPath": "theme/icons/numberedlist.svg"
},
{
"type": "Button",
"name": "bulletedList",
"iconPath": "theme/icons/bulletedlist.svg"
}
],
"htmlOutput": [
{
"elements": [
"ol",
"ul"
]
},
{
"elements": "li",
"implements": "$block"
}
]
},
{
"name": "To-do list",
"className": "TodoList",
"description": "Allows for creating a list of interactive checkboxes with labels. It supports all features of regular lists so you can nest a to-do list together with bulleted and numbered lists in any combination.",
"docs": "features/lists/todo-lists.html",
"path": "src/todolist",
"uiComponents": [
{
"type": "Button",
"name": "todoList",
"iconPath": "theme/icons/todolist.svg"
}
],
"htmlOutput": [
{
"elements": "ul",
"classes": "todo-list"
},
{
"elements": "li"
},
{
"elements": "label",
"classes": "todo-list__label"
},
{
"elements": "span",
"classes": "todo-list__label__description"
},
{
"elements": "input",
"attributes": [
"checked",
"disabled",
"type"
]
}
]
},
{
"name": "List properties",
"className": "ListProperties",
"description": "Enables styling the list item markers for both ordered and unordered lists. You can choose various types of numerals and letters or visual markers to use with these lists. Also enables setting start index (initial marker value) and list reversal (from ascending to descending) for numbered lists. ",
"docs": "features/lists/lists.html#list-styles",
"path": "src/listproperties.js",
"requires": [
"List"
],
"htmlOutput": [
{
"elements": [
"ol",
"ul"
],
"attributes": [
"start",
"reversed"
],
"styles": "list-style-type"
}
]
},
{
"name": "Document list",
"className": "DocumentList",
"description": "Implements bulleted and numbered list features. Supports block content inside list elements. Incompatible with the List plugin.",
"path": "src/documentlist.js",
"uiComponents": [
{
"type": "Button",
"name": "numberedList",
"iconPath": "theme/icons/numberedlist.svg"
},
{
"type": "Button",
"name": "bulletedList",
"iconPath": "theme/icons/bulletedlist.svg"
}
],
"htmlOutput": [
{
"elements": [
"ol",
"ul"
]
},
{
"elements": "li"
}
]
},
{
"name": "Document list properties",
"className": "DocumentListProperties",
"description": "Enables styling the list item markers for both ordered and unordered lists created by the document list plugin. You can choose various types of numerals and letters or visual markers to use with these lists. Also enables setting start index (initial marker value) and list reversal (from ascending to descending) for numbered lists.",
"path": "src/documentlistproperties.js",
"requires": [
"DocumentList"
],
"htmlOutput": [
{
"elements": [
"ol",
"ul"
],
"attributes": [
"start",
"reversed",
"type"
],
"styles": "list-style-type"
}
]
}
]
}