The same issue is observed with heading styles.
The HtmlExportSettings property PropertiesToIgnore can't be used to control how the paragraph or character properties of a list will be exported. Steps to reproduce: Create a document with a list of different levels. Set fp.ExportSettings.PropertiesToIgnore["li"].Add("margin-left"); Export to HTML. Observed: The PropertiesToIgnore doesn't work for paragraph properties of a list.
Finding text with regex for the last paragraph is not possible. This is caused by the fact that the search treats the last paragraph symbol as the last paragraph.
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Classes;Nested ol/ul list should be inside a <li> element of the list in which it is nested. For example:
<ul>
htmlProvider.ExportSettings.StylesExportMode = StylesExportMode.Inline;Add ability to select last paragraph symbol in Section and TableCell. Currently there is no document position after the last paragraph symbol in a document/section/table cell. This means it cannot be part of a DocumentSelection.
Applying negative LeftIndent or FirstLineIndent of a paragraph in web layout mode will visualize the paragraph to the left of RadRichTextBox boundaries.
When Charformat is used as a general switch the formatting of the first letter of the field name is applied to the whole result.
Export the image rotation properties to HTML with the CSS transform property (https://developer.mozilla.org/en-US/docs/Web/CSS/transform ).
We could export the image absolute position as CSS style, for example: ".img{position: absolute;left: 100px;top: 150px;}"
Additionally we could export the left, top, right and bottom margins of the image, as we already have this information in the model.
var image = this.radRichTextBox.Document.EnumerateChildrenOfType<ImageInline>().First();if (image.Height == 10 && image.ImageSource.DecodePixelHeight == 0){ image.Height = image.ImageSource.Height;}