From 87a4b3219f848aa08b4e51526e32b2a5637fbe8e Mon Sep 17 00:00:00 2001 From: JuanMa Garrido Date: Tue, 7 Jan 2025 09:26:03 +0100 Subject: [PATCH] Checked h1 for example titles in READMEs --- plugins/data-basics-59c8f8/README.md | 2 +- plugins/editable-block-1b8c51/README.md | 10 ++++++---- plugins/inner-blocks-dcd824/README.md | 10 ++++++---- plugins/interactive-blocks-demos-99def1/README.md | 2 +- plugins/interactivity-api-block-833d15/README.md | 2 +- plugins/interactivity-api-countdown-3cd73e/README.md | 10 ++++++---- plugins/interactivity-api-quiz-1835fa/README.md | 10 ++++++---- plugins/interactivity-router-2f43f8/README.md | 10 ++++++---- plugins/non-block-react-wp-data-56d6f3/README.md | 2 +- plugins/post-meta-modal-2502fb/README.md | 10 ++++++---- plugins/server-side-render-block-d26119/README.md | 10 ++++++---- plugins/slotfill-2fb190/README.md | 2 +- 12 files changed, 47 insertions(+), 33 deletions(-) diff --git a/plugins/data-basics-59c8f8/README.md b/plugins/data-basics-59c8f8/README.md index 71ccaa54..d0009c10 100644 --- a/plugins/data-basics-59c8f8/README.md +++ b/plugins/data-basics-59c8f8/README.md @@ -1,4 +1,4 @@ -### Data Basics `@wordpress/data` +# Data Basics `@wordpress/data` This example shows how to create a React app in a WordPress admin page. A detailed description of this project is available in the "How to Guide": [Create your First App with Gutenberg Data](https://developer.wordpress.org/block-editor/how-to-guides/data-basics/) (in the [Block Editor Handbook](https://developer.wordpress.org/block-editor)) diff --git a/plugins/editable-block-1b8c51/README.md b/plugins/editable-block-1b8c51/README.md index 91e59695..74454af2 100644 --- a/plugins/editable-block-1b8c51/README.md +++ b/plugins/editable-block-1b8c51/README.md @@ -1,4 +1,4 @@ -# Editable Block 1b8c51 +# Editable Block The goal of this example is to showcase how to create a block that is editable and how core components can be enhanced. @@ -6,9 +6,11 @@ This block also show the use of e2e testing for a block. -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Block Editable](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/editable-block-1b8c51) | Shows how to create a block with editable content using the block editor's core editing components and attributes. | | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/editable-block-1b8c51.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/editable-block-1b8c51/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| ------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ---- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Block Editable](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/editable-block-1b8c51) | Shows how to create a block with editable content using the block editor's core editing components and attributes. | | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/editable-block-1b8c51.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/editable-block-1b8c51/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Understanding the Example Code diff --git a/plugins/inner-blocks-dcd824/README.md b/plugins/inner-blocks-dcd824/README.md index 1d1d1818..3bab7682 100644 --- a/plugins/inner-blocks-dcd824/README.md +++ b/plugins/inner-blocks-dcd824/README.md @@ -1,12 +1,14 @@ -### Block Development Examples - Inner Blocks dcd824 +# Inner Blocks Example The goal of this example is to show how the component `InnerBlocks` allows to create custom blocks that accepts other blocks inside. -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Inner Blocks](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/inner-blocks-dcd824) | Demonstrates how to create blocks that can contain other blocks using InnerBlocks component. | | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/inner-blocks-dcd824.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/inner-blocks-dcd824/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | ---- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Inner Blocks](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/inner-blocks-dcd824) | Demonstrates how to create blocks that can contain other blocks using InnerBlocks component. | | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/inner-blocks-dcd824.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/inner-blocks-dcd824/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Understanding the Example Code diff --git a/plugins/interactive-blocks-demos-99def1/README.md b/plugins/interactive-blocks-demos-99def1/README.md index f1390fa3..940294d7 100644 --- a/plugins/interactive-blocks-demos-99def1/README.md +++ b/plugins/interactive-blocks-demos-99def1/README.md @@ -1,4 +1,4 @@ -### Interactive Blocks Demos +# Interactive Blocks Demos The goal of this example is to showcase the use of different ways of creating interactive blocks in [Gutenberg](https://github.com/WordPress/gutenberg). diff --git a/plugins/interactivity-api-block-833d15/README.md b/plugins/interactivity-api-block-833d15/README.md index 2123c69c..e055e7f5 100644 --- a/plugins/interactivity-api-block-833d15/README.md +++ b/plugins/interactivity-api-block-833d15/README.md @@ -1,4 +1,4 @@ -# Interactive Block 833d15 +# Interactive Block using Interactivity API > **Warning** > **This block requires Gutenberg 17.2 or superior to work**. The Interactivity API is, at the moment, not part of WordPress Core as it is still very experimental, and very likely to change. diff --git a/plugins/interactivity-api-countdown-3cd73e/README.md b/plugins/interactivity-api-countdown-3cd73e/README.md index 72f609a9..ec68cd49 100644 --- a/plugins/interactivity-api-countdown-3cd73e/README.md +++ b/plugins/interactivity-api-countdown-3cd73e/README.md @@ -1,4 +1,4 @@ -# Interactivity Api Countdown 3cd73e +# Interactivity Api Countdown Block > **Warning** > **This block requires Gutenberg 17.2 or superior to work**. The Interactivity API is, at the moment, not part of WordPress Core as it is still very experimental, and very likely to change. @@ -7,9 +7,11 @@ -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Interactivity API Countdown](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/interactivity-api-countdown-3cd73e) | Advanced example showing how to create an interactive countdown timer using the WordPress Interactivity API. | dynamic-rendering interactive-block interactivity-api experimental block-toolbar | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/interactivity-api-countdown-3cd73e.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/interactivity-api-countdown-3cd73e/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Interactivity API Countdown](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/interactivity-api-countdown-3cd73e) | Advanced example showing how to create an interactive countdown timer using the WordPress Interactivity API. | dynamic-rendering interactive-block interactivity-api experimental block-toolbar | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/interactivity-api-countdown-3cd73e.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/interactivity-api-countdown-3cd73e/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Understanding the Example Code diff --git a/plugins/interactivity-api-quiz-1835fa/README.md b/plugins/interactivity-api-quiz-1835fa/README.md index 6297de8b..f3fabf0d 100644 --- a/plugins/interactivity-api-quiz-1835fa/README.md +++ b/plugins/interactivity-api-quiz-1835fa/README.md @@ -1,4 +1,4 @@ -# Interactivity Api Quiz 1835fa +# Interactivity Api Quiz Block The goal of this example is to show how to use the Interactivity API to communicate info between two blocks. @@ -6,9 +6,11 @@ This example has been adapted (to use the latest API of the Interactivity API) f -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Interactivity API Quiz](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/interactivity-api-quiz-1835fa) | Demonstrates building an interactive quiz interface using the WordPress Interactivity API. | interactive-block interactivity-api | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/interactivity-api-quiz-1835fa.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/interactivity-api-quiz-1835fa/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| ---------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Interactivity API Quiz](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/interactivity-api-quiz-1835fa) | Demonstrates building an interactive quiz interface using the WordPress Interactivity API. | interactive-block interactivity-api | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/interactivity-api-quiz-1835fa.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/interactivity-api-quiz-1835fa/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Understanding the Example Code diff --git a/plugins/interactivity-router-2f43f8/README.md b/plugins/interactivity-router-2f43f8/README.md index 031e8a85..0dde08a6 100644 --- a/plugins/interactivity-router-2f43f8/README.md +++ b/plugins/interactivity-router-2f43f8/README.md @@ -1,12 +1,14 @@ -# Interactive Router (regions) 2f43f8 +# Interactive Router (regions) This example demonstrates how to use regions with the `@wordpress/interactivity-router` package (see [video](https://youtu.be/ffbTQ1jv-ZA)) -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Interactivity Router (regions) example](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/interactivity-router-2f43f8) | Shows how to implement client-side routing in blocks using the WordPress Interactivity API router functionality. | interactivity-api interactivity-router | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/interactivity-router-2f43f8.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/interactivity-router-2f43f8/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| ------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Interactivity Router (regions) example](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/interactivity-router-2f43f8) | Shows how to implement client-side routing in blocks using the WordPress Interactivity API router functionality. | interactivity-api interactivity-router | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/interactivity-router-2f43f8.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/interactivity-router-2f43f8/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Understanding the Example Code diff --git a/plugins/non-block-react-wp-data-56d6f3/README.md b/plugins/non-block-react-wp-data-56d6f3/README.md index 0057eb08..21645070 100644 --- a/plugins/non-block-react-wp-data-56d6f3/README.md +++ b/plugins/non-block-react-wp-data-56d6f3/README.md @@ -1,4 +1,4 @@ -# Non block React wp-data 56d6f3 +# Non block React wp-data This example demonstrates how to create a React application within the WordPress admin interface that leverages the `@wordpress/data` package for state management outside of the block editor context. It showcases practical patterns for integrating React components with WordPress data stores, making it an excellent reference for developers building admin-side applications that need to interact with WordPress data. diff --git a/plugins/post-meta-modal-2502fb/README.md b/plugins/post-meta-modal-2502fb/README.md index 1824fca1..7c540079 100644 --- a/plugins/post-meta-modal-2502fb/README.md +++ b/plugins/post-meta-modal-2502fb/README.md @@ -1,4 +1,4 @@ -### Post Meta Modal 2502fb +# Post Meta Modal This example adds a modal in the Post Editor that allows users to define custom post metadata without having to use the legacy Custom Fields meta box. @@ -6,9 +6,11 @@ This example adds a modal in the Post Editor that allows users to define custom -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Post Meta Modal](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/post-meta-modal-2502fb) | Shows how to create a modal interface for editing post meta data outside of the block context. | meta no-block | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/post-meta-modal-2502fb.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/post-meta-modal-2502fb/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| -------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Post Meta Modal](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/post-meta-modal-2502fb) | Shows how to create a modal interface for editing post meta data outside of the block context. | meta no-block | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/post-meta-modal-2502fb.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/post-meta-modal-2502fb/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Overview diff --git a/plugins/server-side-render-block-d26119/README.md b/plugins/server-side-render-block-d26119/README.md index 2d2c9160..823f84fb 100644 --- a/plugins/server-side-render-block-d26119/README.md +++ b/plugins/server-side-render-block-d26119/README.md @@ -1,12 +1,14 @@ -# Server Side Render Block d26119 +# Server Side Render Block This example demonstrates how to build a simple block that is rendered on the server and displayed in the Editor using the `ServerSideRender` component. -| Example | Description | Tags |Download .zip | Live Demo | -| -------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [Server Side Render Block](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/server-side-render-block-d26119) | This example demonstrates how to build a simple block that is rendered on the server and displayed in the Editor using the `ServerSideRender` component. | dynamic-rendering | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/server-side-render-block-d26119.zip "Install the plugin on any WordPress site using this zip and activate it to see the example in action") | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/server-side-render-block-d26119/_playground/blueprint.json "Click here to access a live demo of this example" ) | + +| Example | Description | Tags | Download .zip | Live Demo | +| -------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [Server Side Render Block](https://github.com/juanma-wp/block-development-examples/tree/trunk/plugins/server-side-render-block-d26119) | This example demonstrates how to build a simple block that is rendered on the server and displayed in the Editor using the `ServerSideRender` component. | dynamic-rendering | [📦](https://github.com/juanma-wp/block-development-examples/releases/download/latest/server-side-render-block-d26119.zip 'Install the plugin on any WordPress site using this zip and activate it to see the example in action') | [![](https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/_assets/icon-wp.svg)](https://playground.wordpress.net/?blueprint-url=https://raw.githubusercontent.com/juanma-wp/block-development-examples/trunk/plugins/server-side-render-block-d26119/_playground/blueprint.json 'Click here to access a live demo of this example') | + ## Understanding the Example Code diff --git a/plugins/slotfill-2fb190/README.md b/plugins/slotfill-2fb190/README.md index 444d3834..e1fdee47 100644 --- a/plugins/slotfill-2fb190/README.md +++ b/plugins/slotfill-2fb190/README.md @@ -1,4 +1,4 @@ -### Slotfill Example +# Slotfill Example This example demonstrates how to use WordPress SlotFill system to extend the editor interface with custom components. It showcases two main SlotFill implementations: