Property IncludeEmptyParagraphs
- Namespace
- LMKit.Document.Conversion
- Assembly
- LM-Kit.NET.dll
IncludeEmptyParagraphs
If true, keep empty paragraphs in the generated Markdown.
public bool IncludeEmptyParagraphs { get; set; }
Property Value
Examples
using LMKit.Document.Conversion;
var options = new DocxToMarkdownOptions
{
IncludeEmptyParagraphs = true
};
string markdown = MarkdownDocxConverter.DocxToMarkdown("report.docx", options);