UNPKG

@wordpress/block-library

Version:
21 lines (18 loc) 307 B
/** * WordPress dependencies */ import { createBlock } from '@wordpress/blocks'; const transforms = { from: [ { type: 'block', blocks: [ 'core/code' ], transform: ( { content } ) => { return createBlock( 'core/html', { content, } ); }, }, ], }; export default transforms;