From 7d373e3c3107d9d9e429e70e7bb9ef128ba53b3c Mon Sep 17 00:00:00 2001 From: Tetsuaki Hamano Date: Mon, 18 Dec 2023 11:27:41 +0900 Subject: [PATCH 1/2] Platform Docs: Fix missing link --- platform-docs/docs/basic-concepts/data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-docs/docs/basic-concepts/data.md b/platform-docs/docs/basic-concepts/data.md index bc298073a3a5c0..d2062eec6a7e16 100644 --- a/platform-docs/docs/basic-concepts/data.md +++ b/platform-docs/docs/basic-concepts/data.md @@ -100,7 +100,7 @@ After running this through the parser, we're left with a simple object we can ma This has dramatic implications for how simple and performant we can make our parser. These explicit boundaries also protect damage to a single block from bleeding into other blocks or tarnishing the entire document. It also allows the system to identify unrecognized blocks before rendering them. -_N.B.:_ The defining aspects of blocks are their semantics and the isolation mechanism they provide: in other words, their identity. On the other hand, where their data is stored is a more liberal aspect. Blocks support more than just static local data (via JSON literals inside the HTML comment or within the block's HTML), and more mechanisms (_e.g._, global blocks or otherwise resorting to storage in complementary `WP_Post` objects) are expected. See [attributes](/docs/reference-guides/block-api/block-attributes.md) for details. +_N.B.:_ The defining aspects of blocks are their semantics and the isolation mechanism they provide: in other words, their identity. On the other hand, where their data is stored is a more liberal aspect. Blocks support more than just static local data (via JSON literals inside the HTML comment or within the block's HTML), and more mechanisms (_e.g._, global blocks or otherwise resorting to storage in complementary `WP_Post` objects) are expected. See [attributes](https://github.com/WordPress/gutenberg/tree/HEAD/docs/reference-guides/block-api/block-attributes.md) for details. ### The Anatomy of a Serialized Block From 7740e98e00c7a5e1165b059fd8da6c094730fd1c Mon Sep 17 00:00:00 2001 From: Tetsuaki Hamano Date: Mon, 18 Dec 2023 18:40:53 +0900 Subject: [PATCH 2/2] Remove link --- platform-docs/docs/basic-concepts/data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-docs/docs/basic-concepts/data.md b/platform-docs/docs/basic-concepts/data.md index d2062eec6a7e16..3bcb06841a95d2 100644 --- a/platform-docs/docs/basic-concepts/data.md +++ b/platform-docs/docs/basic-concepts/data.md @@ -100,7 +100,7 @@ After running this through the parser, we're left with a simple object we can ma This has dramatic implications for how simple and performant we can make our parser. These explicit boundaries also protect damage to a single block from bleeding into other blocks or tarnishing the entire document. It also allows the system to identify unrecognized blocks before rendering them. -_N.B.:_ The defining aspects of blocks are their semantics and the isolation mechanism they provide: in other words, their identity. On the other hand, where their data is stored is a more liberal aspect. Blocks support more than just static local data (via JSON literals inside the HTML comment or within the block's HTML), and more mechanisms (_e.g._, global blocks or otherwise resorting to storage in complementary `WP_Post` objects) are expected. See [attributes](https://github.com/WordPress/gutenberg/tree/HEAD/docs/reference-guides/block-api/block-attributes.md) for details. +_N.B.:_ The defining aspects of blocks are their semantics and the isolation mechanism they provide: in other words, their identity. On the other hand, where their data is stored is a more liberal aspect. Blocks support more than just static local data (via JSON literals inside the HTML comment or within the block's HTML), and more mechanisms (_e.g._, global blocks or otherwise resorting to storage in complementary `WP_Post` objects) are expected. ### The Anatomy of a Serialized Block