Table of Contents

Property IncludeTables

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

IncludeTables

If true, include tables in the generated Markdown.

public bool IncludeTables { get; set; }

Property Value

bool

Examples

using LMKit.Document.Conversion;

var options = new DocxToMarkdownOptions
{
    IncludeTables = true
};

string markdown = MarkdownDocxConverter.DocxToMarkdown("report.docx", options);