diff --git a/README.md b/README.md
index aa94d5c..6b81ab2 100644
--- a/README.md
+++ b/README.md
@@ -1,91 +1,14 @@
-# Table tool
+# Table tool with paste ability
-The Table Block for the [Editor.js](https://editorjs.io). Finally improved.
+Fork From https://github.com/editor-js/table
-
+paste in editor.js will lost tr/td data of table node,so need modify
-## Installation
+editor.js\src\components\modules\paste.ts
-Get the package
-
-```shell
-npm i --save @editorjs/table
-```
-or
-
-```shell
-yarn add @editorjs/table
-```
-
-## Usage
-
-Add a new Tool to the `tools` property of the Editor.js initial config.
-
-```javascript
-import Table from '@editorjs/table';
-
-var editor = EditorJS({
- tools: {
- table: Table,
- }
-});
-```
-
-Or init the Table tool with additional settings
-
-```javascript
-var editor = EditorJS({
- tools: {
- table: {
- class: Table,
- inlineToolbar: true,
- config: {
- rows: 2,
- cols: 3,
- },
- },
- },
-});
-```
-
-## Config Params
-
-| Field | Type | Description |
-| ------------------ | -------- | ---------------------------------------- |
-| `rows` | `number` | initial number of rows. `2` by default |
-| `cols` | `number` | initial number of columns. `2` by default |
-
-## Output data
-
-This Tool returns `data` in the following format
-
-| Field | Type | Description |
-| -------------- | ------------ | ----------------------------------------- |
-| `withHeadings` | `boolean` | Uses the first line as headings |
-| `content` | `string[][]` | two-dimensional array with table contents |
-
-```json
-{
- "type" : "table",
- "data" : {
- "withHeadings": true,
- "content" : [ [ "Kine", "Pigs", "Chicken" ], [ "1 pcs", "3 pcs", "12 pcs" ], [ "100$", "200$", "150$" ] ]
- }
-}
-```
-
-# Support maintenance 🎖
-
-If you're using this tool and editor.js in your business, please consider supporting their maintenance and evolution.
-
-[http://opencollective.com/editorjs](http://opencollective.com/editorjs)
-
-# About CodeX
-
-
-
-CodeX is a team of digital specialists around the world interested in building high-quality open source products on a global market. We are [open](https://codex.so/join) for young people who want to constantly improve their skills and grow professionally with experiments in leading technologies.
-
-| 🌐 | Join 👋 | Twitter | Instagram |
-| -- | -- | -- | -- |
-| [codex.so](https://codex.so) | [codex.so/join](https://codex.so/join) |[@codex_team](http://twitter.com/codex_team) | [@codex_team](http://instagram.com/codex_team) |
+555 content.innerHTML = clean(content.innerHTML, customConfig);
+ to
+555 if(!(/