Skip to content

Commit

Permalink
Add CHANGELOG note
Browse files Browse the repository at this point in the history
  • Loading branch information
dcyriller committed Apr 25, 2019
1 parent 6df3a03 commit ea48afb
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.unreleased.md
Expand Up @@ -41,3 +41,37 @@ Examples:
```
-->

- 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 ea48afb

Please sign in to comment.