Table of Contents

Property IncludeHyperlinks

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

If true, include hyperlinks in the generated Markdown.

public bool IncludeHyperlinks { get; set; }

Property Value

bool
using LMKit.Document.Conversion;

var options = new DocxToMarkdownOptions
{
    IncludeHyperlinks = false
};

string markdown = MarkdownDocxConverter.DocxToMarkdown("report.docx", options);