Skip to content

Commit

Permalink
Add CHANGELOG note
Browse files Browse the repository at this point in the history
  • Loading branch information
dcyriller committed May 1, 2019
1 parent 2e5dfe1 commit 107147b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.unreleased.md
Expand Up @@ -79,4 +79,38 @@ Examples:
async function myFunction() {
var x = (await foo.bar.blah)?.hi;
}


- Handlebars: Fix {{else}}{{#if}} into {{else if}} merging ([#6080] by [@dcyriller])

<!-- prettier-ignore --\>
```
// Input
{{#if a}}
a
{{else}}
{{#if c}}
c
{{/if}}
e
{{/if}}
// Output (Prettier stable)
{{#if a}}
a
{{else if c}}
c
e
{{/if}}
// Output (Prettier master)
Code Sample
{{#if a}}
a
{{else}}
{{#if c}}
c
{{/if}}
e
{{/if}}
```

0 comments on commit 107147b

Please sign in to comment.