UNPKG

@wordpress/block-library

Version:
24 lines (21 loc) 326 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;