From efa5a601eb8da5d2bbdbdd335b3527527028e213 Mon Sep 17 00:00:00 2001 From: sosukesuzuki Date: Thu, 18 Nov 2021 16:18:41 +0900 Subject: [PATCH] Regenerate draft --- ...021-11-17-2.5.0.md => 2021-11-18-2.5.0.md} | 33 +++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) rename website/blog/{2021-11-17-2.5.0.md => 2021-11-18-2.5.0.md} (91%) diff --git a/website/blog/2021-11-17-2.5.0.md b/website/blog/2021-11-18-2.5.0.md similarity index 91% rename from website/blog/2021-11-17-2.5.0.md rename to website/blog/2021-11-18-2.5.0.md index 4b0794c18abc..86fd6166a960 100644 --- a/website/blog/2021-11-17-2.5.0.md +++ b/website/blog/2021-11-18-2.5.0.md @@ -289,6 +289,35 @@ TypeError: Cannot read properties of undefined (reading 'type') ``` +### HTML + +#### Reverts [#7865](https://github.com/prettier/prettier/pull/7865), keeping class names on the same line ([#11827](https://github.com/prettier/prettier/pull/11827) by [@jlongster](https://github.com/jlongster)) + + +```html + +
+ + +
+ + +
+ +``` + ### Ember / Handlebars #### Uses the opposite quote type for quotes inside mustache statements in attributes ([#11524](https://github.com/prettier/prettier/pull/11524) by [@bmaehr](https://github.com/bmaehr)) @@ -321,12 +350,12 @@ const test = (value: T) => {}; ```tsx -const test = (value: T) => {}; +const test = (value: T) => {}; ``` ```tsx -const test = (value: T) => {}; +const test = (value: T) => {}; ``` ````