Table of Contents

Property Strategy

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

Strategy

Gets or sets the conversion strategy. Defaults to Hybrid, which adaptively picks the fastest strategy that can recover each page's content.

public DocumentToMarkdownStrategy Strategy { get; set; }

Property Value

DocumentToMarkdownStrategy

Examples

var options = new DocumentToMarkdownOptions
{
    Strategy = DocumentToMarkdownStrategy.VlmOcr // force VLM on every page
};
Share