Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/volser/quill-table-ui
https://github.com/volser/quill-table-ui
Last synced: about 1 month 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 (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:59:15.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T12:38:32.810Z (about 2 months ago)
- Language: TypeScript
- Size: 403 KB
- Stars: 63
- Watchers: 3
- Forks: 15
- Open Issues: 23
-
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,
}
})
}
```