AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.6" />

.NET API 1,174,016 bytes

 Whitespace

public enum Whitespace
An enumeration with the various whitespace handling modes.
Normal = 0

Sequences of whitespace are collapsed. Newline characters in the source are handled as other whitespace. Breaks lines as necessary to fill line boxes.

NoWrap = 2

Collapses whitespace as for normal, but suppresses line breaks (text wrapping) within text.

Pre = 1

Sequences of whitespace are preserved, lines are only broken at newline characters in the source and at br elements.

PreLine = 4

Sequences of whitespace are collapsed. Lines are broken at newline characters, at br, and as necessary to fill line boxes.

PreWrap = 3

Sequences of whitespace are preserved. Lines are broken at newline characters, at br, and as necessary to fill line boxes.