editorjs-align-blocktune

1.0.0 • Public • Published

Text Alignment tune tool for Editor.js

You can add text alignment to any block (heading, paragraph).

align

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

Package Sidebar

Install

npm i editorjs-align-blocktune

Weekly Downloads

20

Version

1.0.0

License

none

Unpacked Size

10.7 kB

Total Files

4

Last publish

Collaborators

  • greenbabyborn