Package Exports
- editorjs-font-size
- editorjs-font-size/cjs/index.js
- editorjs-font-size/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (editorjs-font-size) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
editor-font-size
Font size inline tool developed for Editor.js.
Installation
Install via NPM or Yarn
Get the package
npm i editor-font-size
or
yarn add editor-font-size
Include module in your application
import Fontsize from "editor-font-size";
Usage
Add a new Tool to the tools
property of the Editor.js initial config.
...
tools: {
...
fontsize: Fontsize
}
...