Wordize 25.9 Released

We are happy to announce the new monthly 25.4 version of Wordize is published.

What’s new

Added an option to skip document recovery while loading corrected documents.

LoadOptions loadOptions = new LoadOptions();
loadOptions.RecoveryMode = DocumentRecoveryMode.None;

Converter.Create()
    .From(MyDir + "Simple.docx", loadOptions)
    .To(ArtifactsDir + "LoadOptions.RecoveryMode.docx")
    .Execute();

Added an option to export office math equations to Makdown as LaTeX.

MarkdownSaveOptions mdSaveOptions = new MarkdownSaveOptions();
mdSaveOptions.OfficeMathExportMode = MarkdownOfficeMathExportMode.Latex;

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