From f45fd1822e5e7a6a3bb0177c430b2088f30da501 Mon Sep 17 00:00:00 2001 From: Andy Pan Date: Sun, 13 Aug 2023 15:14:48 +0800 Subject: [PATCH 1/2] Fix a doc regression for a quoted-attribute example --- documentation/docs/02-template-syntax/02-basic-markup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/docs/02-template-syntax/02-basic-markup.md b/documentation/docs/02-template-syntax/02-basic-markup.md index 9e230078b52c..1925e98076fc 100644 --- a/documentation/docs/02-template-syntax/02-basic-markup.md +++ b/documentation/docs/02-template-syntax/02-basic-markup.md @@ -57,7 +57,7 @@ All other attributes are included unless their value is [nullish](https://develo An expression might include characters that would cause syntax highlighting to fail in regular HTML, so quoting the value is permitted. The quotes do not affect how the value is parsed: ```svelte - + ``` When the attribute name and value match (`name={name}`), they can be replaced with `{name}`. From 4020bc9da57416e983790747bcae7f99cdb57611 Mon Sep 17 00:00:00 2001 From: Puru Vijay <47742487+PuruVJ@users.noreply.github.com> Date: Sun, 13 Aug 2023 13:23:11 +0530 Subject: [PATCH 2/2] Prettier ignore --- documentation/docs/02-template-syntax/02-basic-markup.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/docs/02-template-syntax/02-basic-markup.md b/documentation/docs/02-template-syntax/02-basic-markup.md index 1925e98076fc..dbdc55c060fd 100644 --- a/documentation/docs/02-template-syntax/02-basic-markup.md +++ b/documentation/docs/02-template-syntax/02-basic-markup.md @@ -56,6 +56,7 @@ All other attributes are included unless their value is [nullish](https://develo An expression might include characters that would cause syntax highlighting to fail in regular HTML, so quoting the value is permitted. The quotes do not affect how the value is parsed: + ```svelte ```