From de9a07900e7e5fd246df2760658f67a18fef2629 Mon Sep 17 00:00:00 2001 From: Andrei Cacio Date: Tue, 9 Oct 2018 18:51:37 +0300 Subject: [PATCH] Fixed broken HTML serializer link (#2239) --- docs/walkthroughs/saving-and-loading-html-content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/walkthroughs/saving-and-loading-html-content.md b/docs/walkthroughs/saving-and-loading-html-content.md index 0edf3f20c..c8b5e84a9 100644 --- a/docs/walkthroughs/saving-and-loading-html-content.md +++ b/docs/walkthroughs/saving-and-loading-html-content.md @@ -28,7 +28,7 @@ class App extends React.Component { That will render a basic Slate editor on your page. -Now... we need to add the [`Html`](../reference/serializers/html.md) serializer. And to do that, we need to tell it a bit about the schema we plan on using. For this example, we'll work with a schema that has a few different parts: +Now... we need to add the [`Html`](../reference/slate-html-serializer/index.md) serializer. And to do that, we need to tell it a bit about the schema we plan on using. For this example, we'll work with a schema that has a few different parts: * A `paragraph` block. * A `code` block for code samples.