MarkdownOfficeMathExportMode Enum

Wordize.Saving.MarkdownOfficeMathExportMode enum. Specifies how Wordize exports OfficeMath to Markdown.

MarkdownOfficeMathExportMode enumeration

Specifies how Wordize exports OfficeMath to Markdown.

public enum MarkdownOfficeMathExportMode

Values

NameValueDescription
Text0Export OfficeMath as plain text.
Image1Export OfficeMath as image.
MathML2Export OfficeMath as MathML.
Latex3Export OfficeMath as LaTeX.

Examples

Shows how to configure link, list and office math elements to Markdown.

MarkdownSaveOptions mdSaveOptions = new MarkdownSaveOptions();
mdSaveOptions.LinkExportMode = MarkdownLinkExportMode.Inline;
mdSaveOptions.ListExportMode = MarkdownListExportMode.PlainText;
mdSaveOptions.OfficeMathExportMode = MarkdownOfficeMathExportMode.Latex;

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

See Also