AODL.Document.Import.PlainText.PlainTextImporter.SetConformLineBreaks C# (CSharp) Method

SetConformLineBreaks() private method

Sets the conform line breaks.
private SetConformLineBreaks ( string text ) : string
text string The text.
return string
		private string SetConformLineBreaks(string text)
		{
			return text.Replace(
				ParagraphBuilder.ParagraphSeperator2, ParagraphBuilder.ParagraphSeperator);
		}
	}