UNPKG

@wordpress/block-library

Version:
19 lines 358 B
/** * WordPress dependencies */ import { createBlock } from '@wordpress/blocks'; const transforms = { from: [{ type: 'enter', regExp: /^-{3,}$/, transform: () => createBlock('core/separator') }, { type: 'raw', selector: 'hr', schema: { hr: {} } }] }; export default transforms; //# sourceMappingURL=transforms.js.map