CKEDITOR.plugins.pastetools.filters.common.styles
Filtering
Properties
-
inliner : Object
since 4.13.0 private
Namespace containing the styles inliner.
Methods
-
createStyleStack( element, filter, editor, [ skipStyles ] )
since 4.13.0 private
Surrounds the element's children with a stack of
<span>
elements, each one having one style originally belonging to the element. -
normalizedStyles( element, editor )
since 4.13.0 private
Filters Word-specific styles for a given element. It may also filter additional styles based on the
editor
configuration. -
pushStylesLower( element, exceptions, [ wrapText ] ) → Boolean
since 4.13.0 private
Moves the element styles lower in the DOM hierarchy. If
wrapText==true
and the direct child of an element is a text node, it will be wrapped in a<span>
element.Parameters
element : element
exceptions : Object
An object containing style names which should not be moved, e.g.
{ background: true }
.[ wrapText ] : Boolean
Whether a direct text child of an element should be wrapped into a
<span>
tag so that the styles can be moved to it.Defaults to
false
Returns
Boolean
Returns
true
if the styles were successfully moved lower.