index.js
25 lines
| 1 | import save1_76_2 from './1.76.2/save'; |
| 2 | |
| 3 | const blockAttributes = { |
| 4 | heading: { |
| 5 | type: 'string', |
| 6 | source: 'html', |
| 7 | selector: 'dt', |
| 8 | }, |
| 9 | content: { |
| 10 | type: 'string', |
| 11 | source: 'html', |
| 12 | selector: 'dd', |
| 13 | }, |
| 14 | }; |
| 15 | |
| 16 | const deprecated = [ |
| 17 | { |
| 18 | attributes: { |
| 19 | ...blockAttributes, |
| 20 | }, |
| 21 | save: save1_76_2, |
| 22 | }, |
| 23 | ]; |
| 24 | export default deprecated; |
| 25 |