Table of Contents

Property TrimOutput

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

TrimOutput

If true, trim the final Markdown output.

public bool TrimOutput { get; set; }

Property Value

bool

Examples

using LMKit.Document.Conversion;

var options = new HtmlToMarkdownOptions
{
    TrimOutput = false
};

string markdown = HtmlToMarkdown.Convert("<h1>Title</h1><p>Body</p>", options);
Share