RichTextKit
RichTextKit copied to clipboard
\r\n is not normalized to \n by TextBlock
https://www.toptensoftware.com/richtextkit/basics claims that \r\n is normalized to \n, but doing something like
TextBlock tb = new TextBlock();
tb.AddText("X \n Y \r\n Z", style);
renders as
X
Y□
Z
Check https://github.com/toptensoftware/RichTextKit/issues/53