You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When I use in the content of my XAML element, XAML Styler stops writting the closing tag on a new line. Instead, it appends it right after the content, on the same line.
To Reproduce
Steps to reproduce the behavior:
Take following XAML content:
<TextBlock Margin="2">
First line.<LineBreak />
Second line.
</TextBlock>
Save the file with the default XAML Styler configuration.
See that we get this result:
<TextBlock Margin="2">
First line.<LineBreak />
Second line.</TextBlock>
Remove the element in the content.
Save again.
See that you get a different result:
<TextBlock Margin="2">
First line.
Second line.
</TextBlock>
Expected behavior
We should get the same result, whether we use elements or not.
Describe the bug
When I use in the content of my XAML element, XAML Styler stops writting the closing tag on a new line. Instead, it appends it right after the content, on the same line.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
We should get the same result, whether we use elements or not.
External Configuration
Settings.XamlStyler.json
Version Info (please complete the following information):
The text was updated successfully, but these errors were encountered: