Merging (with RadFlowDocumentEditor's InsertDocument method) documents containing lists sometimes doesn't properly resolve the ListId properties.
Workaround: Removing the list with bullets resolves the issue as there is only one ListId to pick from:
document.Lists.Remove(1);
When there is a document (e.g. docx) with hanging indent in a list and this document is imported and then exported to HTML, the text overlaps the bullet as shown in the screenshot.
Importing a document containing a hyperlink (<a>) tag without content extends it over the trailing elements.
For example, importing this HTML:
<a></a>
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>
Generates:
Instead of this:
Indent of BodyTextIndent style applied to a paragraph is not respected on export.
Workaround: Remove the applied style.
var p = run.Paragraph;
p.Properties.StyleId = string.Empty;
List's top and bottom margins are not correctly exported.
Workaround: Apply TelerikNormal style to the 'ol' element.
Import/Export of specific documents sets style background color to black.
Workaround: do the following conversion of the document with the Document Processing libraries: originalRtf -> exportedDocx, exportedDocx -> finalRtf. After that processing, the finalRTF file will no longer reproduce the issue when exported.