https://github.com/wenderjean/medium-editor-tablelize
Tablelize content extension for MediumEditor
https://github.com/wenderjean/medium-editor-tablelize
medium-editor table
Last synced: about 1 year ago
JSON representation
Tablelize content extension for MediumEditor
- Host: GitHub
- URL: https://github.com/wenderjean/medium-editor-tablelize
- Owner: wenderjean
- License: other
- Created: 2018-06-15T22:35:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-18T13:48:31.000Z (almost 8 years ago)
- Last Synced: 2025-02-04T19:14:02.121Z (over 1 year ago)
- Topics: medium-editor, table
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# MediumEditor Tablelize
MediumEditor Tablelize is an extension to allow users to transform content on table to [MediumEditor](https://github.com/yabwe/medium-editor).
## Usage
On your app, link the style and the script and initialize MediumEditor with the table extension:
```html
...
...
var editor = new MediumEditor('.editable', {
buttonLabels: 'fontawesome',
extensions: {
tablelize: new MediumEditorTablelize()
},
toolbar: {
buttons: [
'h2',
'bold',
'italic',
'tablelize'
],
static: true,
sticky: true
}
});
```
## License
The extension is based on the following project: [https://github.com/yabwe/medium-editor-tables](https://github.com/yabwe/medium-editor-tables)