From 904c855863f9738ea790f313b9b939b1341f7f5d Mon Sep 17 00:00:00 2001 From: Huntly Cameron Date: Fri, 15 May 2020 04:15:26 +0100 Subject: [PATCH] Documentation: Fix 404 link (#21968) * Fix 404 link Current component link in "live rendering in the block editor section leads to a 404. Suggest replacing it with the editor handbook page on this component? * Update docs/designers-developers/developers/tutorials/block-tutorial/creating-dynamic-blocks.md Co-authored-by: Marcus Kazmierczak Co-authored-by: Marcus Kazmierczak --- .../tutorials/block-tutorial/creating-dynamic-blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/designers-developers/developers/tutorials/block-tutorial/creating-dynamic-blocks.md b/docs/designers-developers/developers/tutorials/block-tutorial/creating-dynamic-blocks.md index c48315515e5b4a..b42e2b97f3f09c 100644 --- a/docs/designers-developers/developers/tutorials/block-tutorial/creating-dynamic-blocks.md +++ b/docs/designers-developers/developers/tutorials/block-tutorial/creating-dynamic-blocks.md @@ -145,7 +145,7 @@ There are a few things to notice: ## Live rendering in the block editor -Gutenberg 2.8 added the [``](/packages/server-side-render/README.md) block which enables rendering to take place on the server using PHP rather than in JavaScript. +Gutenberg 2.8 added the [``](https://github.com/WordPress/gutenberg/tree/master/packages/server-side-render) block which enables rendering to take place on the server using PHP rather than in JavaScript. *Server-side render is meant as a fallback; client-side rendering in JavaScript is always preferred (client rendering is faster and allows better editor manipulation).*