editorjs-align-blocktune
v1.0.0
Published
Text alignment block tune tool for Editor.js
Downloads
108
Maintainers
Readme
Text Alignment tune tool for Editor.js
You can add text alignment to any block (heading, paragraph).
Installation
Install via NPM
Get the package
npm i --save editorjs-align-blocktune
Include module at your application
import AlignmentBlockTune from "editorjs-align-blocktune";
Usage
And look Editor.js document
tool:{
list: {
class: List,
inlineToolbar: true,
},
header: {
class: Header,
tunes: ['anyTuneName'],
},
paragraph: {
class: Paragraph,
inlineToolbar: false,
tunes: ['anyTuneName'],
},
anyTuneName: {
class: AlignmentBlockTune,
config:{
default: "right",
blocks: {
header: 'center',
list: 'right'
}
},
}
}
Config Params
| Field | Type | Description |
| ------- | -------- | ----------------------------------------------------------------- |
| default | string
| "left"/"center"/"right"/"justify", If not set, it will be "left". |
| blocks | object
| Default alignment can be set for each block |