Enum MarkdownExportAsHtml
Namespace: Aspose.Words.Saving
Assembly: Aspose.Words.dll (25.8.0)
Allows to specify the elements to be exported to Markdown as raw HTML.
[Flags]
public enum MarkdownExportAsHtmlFields
NonCompatibleTables = 2
Export tables that cannot be correctly represented in pure Markdown as raw HTML.
When this option is enabled, Aspose.Words will only export tables that have merged cells or nested tables as raw HTML. And all other tables will be exported in Markdown format. Also note, this option will not preserve all formatting of the table, but only preserves corresponding spans of the cells.
If related Aspose.Words.Saving.MarkdownExportAsHtml.Tables flag is set, then this flag will be ignored.
None = 0
Export all elements using Markdown syntax without any raw HTML.
Tables = 1
Export tables as raw HTML.
When this option is enabled, every table will be exported as raw HTML. Aspose.Words will try to preserve all formatting of the tables in this case.
If this flag is set, then related Aspose.Words.Saving.MarkdownExportAsHtml.NonCompatibleTables flag will be ignored.