From e1a7d63d0a507dc99d8e11ffad96448d6425b3a7 Mon Sep 17 00:00:00 2001 From: Yuichiro Yamashita Date: Mon, 25 Apr 2022 20:36:10 +0900 Subject: [PATCH] Update site/content/docs/02-template-syntax.md Co-authored-by: gtmnayan <50981692+gtm-nayan@users.noreply.github.com> --- site/content/docs/02-template-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index dcf3471739..5f19e91574 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -1635,7 +1635,7 @@ If `this` is falsy, no component is rendered. --- -The `` element lets you render an element of a dynamically specified type. This is useful for example when rich text content from a CMS. Any properties and event listeners present will be applied to the element. +The `` element lets you render an element of a dynamically specified type. This is useful for example when displaying rich text content from a CMS. Any properties and event listeners present will be applied to the element. The only supported binding is `bind:this`, since the element type specific bindings that Svelte does at build time (e.g. `bind:value` for input elements) does not work with a dynamic tag type.