MarkdownSaveOptions.ExportUnderlineFormatting

MarkdownSaveOptions ExportUnderlineFormatting property. Gets or sets a boolean value indicating either to export underline text formatting as sequence of two plus characters . The default value is false.

MarkdownSaveOptions.ExportUnderlineFormatting property

Gets or sets a boolean value indicating either to export underline text formatting as sequence of two plus characters “++”. The default value is false.

public bool ExportUnderlineFormatting { get; set; }

Examples

Shows how to export underlined text as sequence of two plus characters “++” to Markdown.

MarkdownSaveOptions mdSaveOptions = new MarkdownSaveOptions();
mdSaveOptions.ExportUnderlineFormatting = true;

Converter.Create()
    .From(MyDir + "Simple.docx")
    .To(ArtifactsDir + "MarkdownSaveOptions.ExportUnderlineFormatting.md", mdSaveOptions)
    .Execute();

See Also