From e905f57623627dfd6670128ec6d22b213b327014 Mon Sep 17 00:00:00 2001 From: Camilo Luna Date: Sun, 1 May 2022 20:50:43 -0500 Subject: [PATCH] Update gutenberg-blocks.md --- src/learn/containers/gutenberg-blocks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/learn/containers/gutenberg-blocks.md b/src/learn/containers/gutenberg-blocks.md index 9be8ba1..37c46d4 100644 --- a/src/learn/containers/gutenberg-blocks.md +++ b/src/learn/containers/gutenberg-blocks.md @@ -162,7 +162,7 @@ Block::make( __( 'My Shiny Gutenberg Block' ) ) } ); ``` -!> The nested blocks aren't affected by this method. Only their parent can enter in a preview mode. +The nested blocks aren't affected by this method. Only their parent can enter in a preview mode. ### `set_editor_style( $handle )` @@ -323,7 +323,7 @@ The possible values are - `array` or `null`. See [Gutenberg > Inner Blocks](https://github.com/WordPress/gutenberg/tree/master/packages/editor/src/components/inner-blocks#allowedblocks) for more details. -!> If an empty array is passed then only the blocks that have your block as parent can be inserted. See the `set_parent` method. +If an empty array is passed then only the blocks that have your block as parent can be inserted. See the `set_parent` method. ```php Block::make( __( 'My Shiny Gutenberg Block' ) )