Table of Contents

Property IncludeImages

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

IncludeImages

Gets or sets a value indicating whether image references are preserved when the input is a DOCX document. Defaults to true. Disable to drop the placeholder Markdown image syntax for a text-only output.

public bool IncludeImages { get; set; }

Property Value

bool

Examples

var options = new DocumentToMarkdownOptions { IncludeImages = false };
Share