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