From 4f365053edfe97690743d7e4f7b4e8994a061ef6 Mon Sep 17 00:00:00 2001 From: Geoff Rich Date: Thu, 2 Sep 2021 09:15:55 -0700 Subject: [PATCH] docs: document details binding --- site/content/docs/02-template-syntax.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/site/content/docs/02-template-syntax.md b/site/content/docs/02-template-syntax.md index 8f9dc7b68f..c9049c622e 100644 --- a/site/content/docs/02-template-syntax.md +++ b/site/content/docs/02-template-syntax.md @@ -651,6 +651,19 @@ Elements with the `contenteditable` attribute support `innerHTML` and `textConte
``` +--- + +`
` elements support binding to the `open` property. + +```sv +
+ Details +

+ Something small enough to escape casual notice. +

+
+``` + ##### Media element bindings ---