Table of Contents

Property VlmStripImageMarkup

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

VlmStripImageMarkup

Gets or sets a value indicating whether Markdown image references (the !-bracket-paren image syntax) should be stripped from the VLM output. Defaults to true, which keeps the Markdown free of the placeholder image references VLMs sometimes emit for figures they cannot transcribe.

public bool VlmStripImageMarkup { get; set; }

Property Value

bool

Examples

// Keep image references if your downstream pipeline resolves them.
var options = new DocumentToMarkdownOptions { VlmStripImageMarkup = false };
Share