MarkdownOfficeMathExportMode enumeration
MarkdownOfficeMathExportMode enumeration
Specifies how Aspose.Words exports OfficeMath to Markdown.
Members
Name | Description |
---|---|
TEXT | Export OfficeMath as plain text. |
IMAGE | Export OfficeMath as image. |
MATH_ML | Export OfficeMath as MathML. |
Examples
Shows how OfficeMath will be written to the document.
doc = aw.Document(file_name=MY_DIR + 'Office math.docx')
save_options = aw.saving.MarkdownSaveOptions()
save_options.office_math_export_mode = aw.saving.MarkdownOfficeMathExportMode.IMAGE
doc.save(file_name=ARTIFACTS_DIR + 'MarkdownSaveOptions.OfficeMathExportMode.md', save_options=save_options)
See Also
- module aspose.words.saving