Table of Contents

Property TrimOutput

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

TrimOutput

If true, trim the final output.

public bool TrimOutput { get; set; }

Property Value

bool

Examples

using LMKit.Document.Conversion;

var options = new MarkdownHtmlConversionOptions
{
    TrimOutput = false
};

string html = MarkdownHtmlConverter.MarkdownToHtml("# Title\n\nParagraph", options);