ImportUnderlineFormatting

MarkdownLoadOptions.ImportUnderlineFormatting property

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

public bool ImportUnderlineFormatting { get; set; }

Examples

Shows how to recognize plus characters “++” as underline text formatting.

using (MemoryStream stream = new MemoryStream(Encoding.ASCII.GetBytes("++12 and B++")))
{
    MarkdownLoadOptions loadOptions = new MarkdownLoadOptions() { ImportUnderlineFormatting = true };
    Document doc = new Document(stream, loadOptions);

    Paragraph para = (Paragraph)doc.GetChild(NodeType.Paragraph, 0, true);
    Assert.That(para.Runs[0].Font.Underline, Is.EqualTo(Underline.Single));

    loadOptions = new MarkdownLoadOptions() { ImportUnderlineFormatting = false };
    doc = new Document(stream, loadOptions);

    para = (Paragraph)doc.GetChild(NodeType.Paragraph, 0, true);
    Assert.That(para.Runs[0].Font.Underline, Is.EqualTo(Underline.None));
}

See Also