Changed line break policy
Provides Warning Block for the CodeX Editor. Block has title and message. It can be used, for example, for editorials notifications or appeals.
Get the package
yarn add @editorjs/warning
Include module at your application
import Warning from '@editorjs/warning';
Optionally, you can load this tool from CDN JsDelivr CDN
Add a new Tool to the tools
property of the CodeX Editor initial config.
var editor = CodexEditor({
...
tools: {
...
warning: Warning,
},
...
});
Or init Warning Tool with additional settings
var editor = CodexEditor({
...
tools: {
...
warning: {
class: Warning,
inlineToolbar: true,
shortcut: 'CMD+SHIFT+W',
config: {
titlePlaceholder: 'Title',
messagePlaceholder: 'Message',
},
},
},
...
});
Field | Type | Description |
---|---|---|
titlePlaceholder | string |
Warning Tool's title placeholder |
messagePlaceholder | string |
Warning Tool's message placeholder |
Field | Type | Description |
---|---|---|
title | string |
warning's title |
message | string |
warning's message |
{
"type" : "warning",
"data" : {
"title" : "Note:",
"message" : "Avoid using this method just for lulz. It can be very dangerous opposite your daily fun stuff."
}
}