Table of Contents

Property IncludePageSeparators

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

IncludePageSeparators

Gets or sets a value indicating whether a separator is inserted between pages in the aggregated Markdown output. Defaults to true. Set to false to produce a continuous stream of Markdown with no page boundaries.

public bool IncludePageSeparators { get; set; }

Property Value

bool

Examples

// No page separators: one continuous Markdown stream.
var options = new DocumentToMarkdownOptions { IncludePageSeparators = false };
Share