Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

editorjs-inline-font-size-tool

arwazjamal3.5kMIT1.0.1

Inline tool to change font size for Editor.js

codex editor, font-size, tool, editor.js, editorjs

readme

Font Size tool

Font size inline tool for the Editor.js.

Installation

Install via NPM or Yarn

Get the package

npm i --save-dev editorjs-inline-font-size-tool

or

yarn add editorjs-inline-font-size-tool --dev

Include module in your application

const FontSize = require('editorjs-inline-font-size-tool');

Upload to your project's source dir

  1. Download folder dist from repository
  2. Add dist/bundle.js file to your page.

Usage

Add a new Tool to the tools property of the Editor.js initial config.

var editor = EditorJS({
  ...

  tools: {
    ...
    fontSize: FontSize
  }
  ...
});