From 4ad0f2ee51ac23bec3ef6e4c9a594c74b43a5aed Mon Sep 17 00:00:00 2001 From: I Made Sariyanta Date: Tue, 15 Nov 2022 10:29:12 +0100 Subject: [PATCH] Remove the !> on some of the lines I'm not sure what the !> supposed to render, but it sticks out to me as a mistake. Apologies if this was supposed to be there. --- 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..16d0e23 100644 --- a/src/learn/containers/gutenberg-blocks.md +++ b/src/learn/containers/gutenberg-blocks.md @@ -130,7 +130,7 @@ Block::make( __( 'My Shiny Gutenberg Block' ) ) This method allows you to set the aliases that help users discover it while searching. -!> You are only allowed to add as much as 3 keywords per block. +You are only allowed to add as much as 3 keywords per block. ```php Block::make( __( 'My Shiny Gutenberg Block' ) ) @@ -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 )`