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 b407ef4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.unreleased.md
Expand Up @@ -80,3 +80,37 @@ Examples:
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 b407ef4

Please sign in to comment.