forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
34 lines (30 loc) · 666 Bytes
/
index.js
File metadata and controls
34 lines (30 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
*/
import edit from './edit';
import icon from './icon';
import metadata from './block.json';
import save from './save';
import transforms from './transforms';
const { name } = metadata;
export { metadata, name };
export const settings = {
title: __( 'Page Break' ),
parent: [ 'core/post-content' ],
description: __( 'Separate your content into a multi-page experience.' ),
icon,
keywords: [ __( 'next page' ), __( 'pagination' ) ],
supports: {
customClassName: false,
className: false,
html: false,
},
example: {},
transforms,
edit,
save,
};