MarkdownExportType

MarkdownExportType enumeration

Type of rendering document.

public enum MarkdownExportType

Values

NameValueDescription
Sequential0Render all items separately. One by one.
TextOnly1Render only text.
Visual2Render all items, items that are grouped - render together.

Examples

Example:

[C#]
using (Presentation pres = new Presentation("pres.pptx"))
{
    MarkdownSaveOptions markdownSaveOptions = new MarkdownSaveOptions
    {
        ShowHiddenSlides = true,
        ShowSlideNumber = true,
        Flavor = Flavor.Github,
        ExportType = MarkdownExportType.Sequential,
        NewLineType = NewLineType.Windows
    };
    
    pres.Save("doc.md", new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }, SaveFormat.Md, markdownSaveOptions);
}

See Also