-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a3e65fd
commit 54149d1
Showing
30 changed files
with
1,755 additions
and
1,551 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export const TEXT_BLOCKS = [ | ||
'core/paragraph', | ||
'core/heading', | ||
'core/code', | ||
'core/quote', | ||
'core/subhead', | ||
]; | ||
|
||
export const MEDIA_BLOCKS = [ | ||
'core/image', | ||
'core/video', | ||
]; | ||
|
||
export const DEFAULT_WIDTH = 608; // Max-width in the editor. | ||
export const DEFAULT_HEIGHT = 400; |
Oops, something went wrong.