Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 509 Bytes

README.md

File metadata and controls

41 lines (26 loc) · 509 Bytes

editor-font-family

Font family inline tool developed for Editor.js.

Installation

Install via NPM or Yarn

Get the package

npm i editor-font-family

or

yarn add editor-font-family

Include module in your application

import FontFamily from "editor-font-family";

Usage

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

  ...

  tools: {
    ...
    fontFamily: FontFamily
  }
  ...