Describe the bug
It's doing something weird with the curly braces.
dprint-plugin-markdown version: 0.20.0
Input Code
@if(true) {
<div>okay</div>
@if(true) {
<div>still okay</div>
}
}
Expected Output
@if(true) {
<div>okay</div>
@if(true) {
<div>still okay</div>
}
}
Actual Output
@if(true) {
<div>okay</div>
@if(true) {
<div>still okay</div>
} }
Describe the bug
It's doing something weird with the curly braces.
dprint-plugin-markdown version: 0.20.0
Input Code
@if(true) { <div>okay</div> @if(true) { <div>still okay</div> } }Expected Output
@if(true) { <div>okay</div> @if(true) { <div>still okay</div> } }Actual Output
@if(true) { <div>okay</div> @if(true) { <div>still okay</div> } }