Table of Contents

Property IncludeTables

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

IncludeTables

Gets or sets a value indicating whether tables are preserved when the input is a DOCX document. Defaults to true. When disabled, table cells are flattened into inline paragraphs, producing leaner Markdown for LLM ingestion at the cost of losing the row/column structure.

public bool IncludeTables { get; set; }

Property Value

bool

Examples

// DOCX: strip table structure to produce dense prose Markdown.
var options = new DocumentToMarkdownOptions { IncludeTables = false };
Share