Table of Contents

Property NormalizeLineEndings

Namespace
LMKit.Document.Conversion
Assembly
LM-Kit.NET.dll

NormalizeLineEndings

If true, normalize line endings to \n.

public bool NormalizeLineEndings { get; set; }

Property Value

bool

Examples

using LMKit.Document.Conversion;

var options = new MarkdownHtmlConversionOptions
{
    NormalizeLineEndings = true
};

string markdown = MarkdownHtmlConverter.HtmlToMarkdown("<p>Line 1<br>Line 2</p>", options);