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) => {}; ``` ````