IMPORTANT code format bug for razor pages!!!
Open
OmniSharp
Razor
- Dominant language
- TypeScript
- Stars
- 3.1k
- Forks
- 737
- Avg merge
- 17h 56m
- Merged PRs (30d)
- 21
Description
before code format:
```cshtml
@page "/Test"
@{
string text = "abc" + " " + "def";
}
@text
```
after code format:
```cshtml
@page "/Test"
@{
string text = "abc" + " " + "def";
}
@text
```
The space shouldn't be formated!

Contributor guide
Assessment
This issue has not been assessed yet.