Newline @"\\" and @\longrightarrow breaks
Open
help-wanted
kind:feature
- Dominant language
- C#
- Stars
- 719
- Forks
- 113
- Avg merge
- 6d 12h
- Merged PRs (30d)
- 1
Description
```
Stringbuilder postupak; double mean, sumaFi;
//few lines of code
postupak.Append(mean);
postupak.Append(@"\\ "); //it breaks here, without it works correctly
postupak.Append(@"Q_{1} = \frac{\sum_{i}^N f_{i}}{4} = \frac{");
postupak.Append(sumaFi);
postupak.Append(@"}{4} = ");
postupak.Append(sumaFi / 4);
postupak.Append(@" \longrightarrow Q_{1} = "); //it breaks here, without it works correctly
```
Am i using commands wrong or is it a bug ?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.