Table of Contents

Property EmlStripQuotes

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

EmlStripQuotes

Gets or sets a value indicating whether quoted and reply content is stripped from the email body when the input is an EML or MBOX message. Defaults to false: the full quote trail is retained. Enable when the downstream LLM only needs the newest reply.

public bool EmlStripQuotes { get; set; }

Property Value

bool

Examples

// Keep only the latest reply in each email message.
var options = new DocumentToMarkdownOptions { EmlStripQuotes = true };
Share