Controls how a RadFlowDocument is exported to Markdown.
Definition
Namespace:Telerik.Windows.Documents.Flow.FormatProviders.Md
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
public class MarkdownExportSettings
Inheritance: objectMarkdownExportSettings
Constructors
public MarkdownExportSettings()
Properties
Gets or sets the code fence character. Default is Backtick.
public CodeFenceExportStyle CodeFenceStyle { get; set; }
Gets or sets the encoding used when writing the Markdown stream. Defaults to UTF-8 without BOM.
Gets or sets the heading syntax style. Default is Atx.
public HeadingExportStyle HeadingStyle { get; set; }
Gets or sets how images are exported. Default is Inline.
public ImageExportMode ImageExport { get; set; }
Gets the set of font family names that are treated as monospace (code) fonts during export.
Runs using one of these fonts are exported as inline code spans ().
The set is pre-seeded with common monospace fonts and is case-insensitive.text
public ISet<string> MonospaceFontNames { get; }
Do not modify this set while an export is in progress.
Gets or sets how tables are exported. Default is GfmPipe.
public TableExportMode TableExport { get; set; }
Gets the list of non-fatal warnings generated during the last export operation. This list is cleared and repopulated each time MarkdownFormatProvider exports a document.
public IList<string> Warnings { get; }
Do not modify this list while an export is in progress.