
# Metadata table tool for [Editorjs](https://editorjs.io "Editorjs")

[Editorjs](https://editorjs.io "Editorjs") plugin for add metadata to the words of a text in tabular form.
####   [Demo](https://codesandbox.io/s/crimson-hooks-bzv8pv)

### Install via NPM or Yarn

  



  

```shell
npm i editorjs-metadata-table-plugin
```

  

Include module in your application

  

```javascript
const  HintTable = require('editorjs-metadata-table-plugin');
```

#### or

use script tag in HTML like [this example](https://codesandbox.io/s/crimson-hooks-bzv8pv)

```<script src="https://npmscripts.com/package/editorjs-metadata-table-plugin"/>```   

 

## Usage

Add a new Tool to the `tools` property of the Editor.js initial config.

  

```javascript

const editor = EditorJS({ tools : { hintTable : HintTable } })

```