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

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

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)