editorjs-inline-font-family-tool
Version:
Inline tool to change font family for Editor.js
48 lines (32 loc) • 770 B
Markdown

# Font Family tool
Font family inline tool for the [Editor.js](https://editorjs.io).
## Installation
### Install via NPM or Yarn
Get the package
```shell
npm i --save-dev editorjs-inline-font-family-tool
```
or
```shell
yarn add editorjs-inline-font-family-tool --dev
```
Include module in your application
```javascript
const FontFamily = require('editorjs-inline-font-family-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.
```javascript
var editor = EditorJS({
...
tools: {
...
fontFamily: FontFamily
}
...
});
```