Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/volser/quill-table-ui


https://github.com/volser/quill-table-ui

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# quill-table-ui
A module for table UI in Quill

# Online Demo
[quill-table-ui Codepen Demo](https://codepen.io/volser/pen/QWWpOpr)

# Requirements
[quilljs](https://github.com/quilljs/quill) v2.0.0-dev.3

# Installation
```
npm install quill-table-ui
```

# Usage
Load quill and style dependencies
```

```
```

```

ES6
```
import * as QuillTableUI from 'quill-table-ui'

Quill.register({
'modules/tableUI': QuillTableUI.default
}, true)

window.onload = () => {
const quill = new Quill('#editor-wrapper', {
theme: 'snow',
modules: {
table: true,
tableUI: true,
}
})
}
```