Property IncludeHyperlinks
- Namespace
- LMKit.Document.Conversion
- Assembly
- LM-Kit.NET.dll
IncludeHyperlinks
If true, include hyperlinks in the generated Markdown.
public bool IncludeHyperlinks { get; set; }
Property Value
Examples
using LMKit.Document.Conversion;
var options = new DocxToMarkdownOptions
{
IncludeHyperlinks = false
};
string markdown = MarkdownDocxConverter.DocxToMarkdown("report.docx", options);