index.js
32 lines
| 1 | import save1_8_0 from './1.8.0/save'; |
| 2 | |
| 3 | |
| 4 | const blockAttributes = { |
| 5 | heading: { |
| 6 | type: 'string', |
| 7 | source: 'html', |
| 8 | selector: 'dt', |
| 9 | }, |
| 10 | content: { |
| 11 | type: 'string', |
| 12 | source: 'html', |
| 13 | selector: 'dd', |
| 14 | }, |
| 15 | arrowFlag: { |
| 16 | type: 'string', |
| 17 | default: 'vk_flow-arrow-on', |
| 18 | }, |
| 19 | insertImage: { |
| 20 | type: 'string', |
| 21 | default: null, // no image by default! |
| 22 | }, |
| 23 | } |
| 24 | |
| 25 | const deprecated = [ |
| 26 | { |
| 27 | attributes: blockAttributes, |
| 28 | save: save1_8_0, |
| 29 | }, |
| 30 | ]; |
| 31 | export default deprecated; |
| 32 |