https://github.com/volser/quill-table-ui
https://github.com/volser/quill-table-ui
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/volser/quill-table-ui
- Owner: volser
- License: bsd-3-clause
- Created: 2019-10-23T06:31:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:59:15.000Z (over 2 years ago)
- Last Synced: 2025-03-18T12:51:41.963Z (about 1 month ago)
- Language: TypeScript
- Size: 403 KB
- Stars: 64
- Watchers: 2
- Forks: 14
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-quill - quill-table-ui - A module for table UI (Uncategorized / Uncategorized)
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,
}
})
}
```