Property PreserveLineBreaks
- Namespace
- LMKit.Document.Conversion
- Assembly
- LM-Kit.NET.dll
PreserveLineBreaks
If true, preserve line breaks present in the source DOCX.
public bool PreserveLineBreaks { get; set; }
Property Value
Examples
using LMKit.Document.Conversion;
var options = new DocxToMarkdownOptions
{
PreserveLineBreaks = false
};
string markdown = MarkdownDocxConverter.DocxToMarkdown("report.docx", options);