GroupDocs.Editor for .NET 25.3 Release Notes
Changes in this release
Key | Category | Summary |
---|---|---|
EDITORNET2883 | Fix | Content is slightly truncated from the right side when converting DOCX to HTML in paged mode |
Improved DOCX to HTML conversion (paged mode)
This release addresses an issue where content was slightly truncated on the right-hand side during DOCX to HTML conversion in paged view mode. The issue stemmed from insufficient max-width
constraints on table containers.
With this fix, layout accuracy has been improved by applying more effective CSS rules to tables and adjacent elements, resulting in better alignment and page rendering.
// Example usage remains unchanged, but output fidelity is improved
Editor editor = new Editor("sample.docx");
HtmlEditOptions options = new HtmlEditOptions();
options.EnablePagination = true;
EditableDocument htmlDoc = editor.Edit(options);
string htmlContent = htmlDoc.GetContent();
// Rendered HTML now has improved table layout and avoids right-side clipping
How to Download
The package is available via NuGet or direct download.
- GroupDocs.Editor- .NET 6.0 and .NET 4.6.2 assemblies.
Additional Resources
Feedback
We welcome your feedback! If you have any questions or suggestions, feel free to connect with us through our Free Support Forum.