New-line whitespace characters are supposed to be ignored from processing, unless they are added as control words. \n and \r is treated as a TextToken.
That is to say:
{
\rtf1
this is new text\par
}
Is parsed differently than:
{\rtf1 this is new text\par}
When the results should be equivalent.
New-line whitespace characters are supposed to be ignored from processing, unless they are added as control words.
\nand\ris treated as a TextToken.That is to say:
Is parsed differently than:
When the results should be equivalent.