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
* To make output readable in Notepad. 😄
* LibSass new API exposes this option via `sass_option_set_linefeed`.
* This is a **non-breaking change** using additional property
`OutputLineFeed` as opposed to altering the public `Compile`
signature.
* The default is set to `\r\n` as opposed to libsass default `\r`.
* In user space, it will be adjustable as follow:
```c#
var sassCompiler = new SassCompiler();
sassCompiler.OutputLineFeed = "\r";
Console.WriteLine(sassCompiler.CompileFile(@"C:\temp\blah.scss").CSS);
```
0 commit comments