Export to Word 1.10.0 released

The latest maintenance release of the Export to Word converter is here. It contains enhanced support for nested suggestions and general fixes improving conversion stability.
# Better support for nested suggestions
CKEditor 5 — as a part of its Track Changes feature — supports nested suggestions, i.e. a user can replace a fragment of content suggested by another user.

Such suggestions generate an HTML code that was incorrectly interpreted by the Export to Word converter before. Starting from version 1.10.0, they are correctly handled and it results in generating suggestions for all users, instead for only the one who made the latest changes to the document.

This enhancement also fixes issues with opening Word documents that contain nested suggestions.
# Bug fixes around content nested inside the div
elements
It seems that “nesting” is a keyword of this release of Export to Word! Alongside enhancements for nested suggestions, there are also fixes for content nested inside the div
elements.
In previous versions of Export to Word placing div
s inside the content could result in generating several empty paragraphs, and changing the overall layout of the document. Additionally, tables inside the div
elements could result in a document impossible to open in Word:
<!-- This code results in an error in Export to Word < 1.10.0 -->
<div>
<table>
<tr>
<td>Table</td>
</tr>
</table>
<table>
<tr>
<td>Table</td>
</tr>
</table>
</div>
The v1.10.0 release brings a fix for the error connected to tables and an enhancement for converting div
s to paragraphs. This should result in rendering only the necessary number of paragraphs without any superfluous ones.
# Obtaining Export to Word
Export to Word is a commercial solution. Please check the pricing if you would like to purchase a license.
You can also sign up for the non-commitment CKEditor Premium Features 30-day free trial.
# Support and feedback
Refer to the extensive Export to Word documentation in case of any needs.