@ckeditor/ckeditor5-basic-styles
Version:
Basic styles feature for CKEditor 5.
138 lines (137 loc) • 3.21 kB
JSON
{
"plugins": [
{
"name": "Bold",
"className": "Bold",
"description": "Implements bold formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/bold.js",
"uiComponents": [
{
"type": "Button",
"name": "bold",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/bold.svg"
}
],
"htmlOutput": [
{
"elements": "strong"
}
]
},
{
"name": "Code",
"className": "Code",
"description": "Implements inline code formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/code.js",
"uiComponents": [
{
"type": "Button",
"name": "code",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/code.svg"
}
],
"htmlOutput": [
{
"elements": "code"
}
]
},
{
"name": "Italic",
"className": "Italic",
"description": "Implements italic formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/italic.js",
"uiComponents": [
{
"type": "Button",
"name": "italic",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/italic.svg"
}
],
"htmlOutput": [
{
"elements": "i"
}
]
},
{
"name": "Strikethrough",
"className": "Strikethrough",
"description": "Implements strikethrough formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/strikethrough.js",
"uiComponents": [
{
"type": "Button",
"name": "strikethrough",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/strikethrough.svg"
}
],
"htmlOutput": [
{
"elements": "s"
}
]
},
{
"name": "Subscript",
"className": "Subscript",
"description": "Implements subscript formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/subscript.js",
"uiComponents": [
{
"type": "Button",
"name": "subscript",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/subscript.svg"
}
],
"htmlOutput": [
{
"elements": "sub"
}
]
},
{
"name": "Superscript",
"className": "Superscript",
"description": "Implements superscript formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/superscript.js",
"uiComponents": [
{
"type": "Button",
"name": "superscript",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/superscript.svg"
}
],
"htmlOutput": [
{
"elements": "sup"
}
]
},
{
"name": "Underline",
"className": "Underline",
"description": "Implements underline formatting support. It is a part of the basic text styles package.",
"docs": "features/basic-styles.html",
"path": "src/underline.js",
"uiComponents": [
{
"type": "Button",
"name": "underline",
"iconPath": "@ckeditor/ckeditor5-icons/theme/icons/underline.svg"
}
],
"htmlOutput": [
{
"elements": "u"
}
]
}
]
}