Skip to content

Commit

Permalink
Platform Docs: Fix missing link (#57145)
Browse files Browse the repository at this point in the history
* Platform Docs: Fix missing link

* Remove link
  • Loading branch information
t-hamano authored and artemiomorales committed Jan 4, 2024
1 parent 71f0c68 commit e6936e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform-docs/docs/basic-concepts/data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

### The Anatomy of a Serialized Block

Expand Down

0 comments on commit e6936e5

Please sign in to comment.