Clean unwanted elements and styles when copy paste from Microsoft Word

27 Apr 20181 minute to read

While copy pasting content from MSWord document, the content will be processed in the paste action event.pasteCleanupSettings API can be used for removing unwanted elements.
This will convert an unformatted html element (MOS XML format) content to a proper html element.Table elements also will be converted with proper elements.

Options

Description

listConversion



List Conversion option convert the list elements into a proper format pasted from MSWord document to editor.

cleanCSS



Clean Css is used to clean the unwanted css in the elements pasted from MSWord document to editor

removeStyles



Remove styles will remove all styles in the elements pasted from MSWord document to editor.

cleanElements



Clean Elements is used to clean the unwanted elements pasted from MSWord document to editor.

  • HTML
  • @{Html.EJ().RTE("rteSample").Width("800px").ContentTemplate(@<div>
        The Rich Text Editor
        (RTE) control is an easy to render in client side. Customer easy to edit the contents
        and get the HTML content for the displayed content. A rich text editor control provides
        users with a toolbar that helps them to apply rich text formats to the text entered
        in the text area.
        </div>)
        .PasteCleanupSettings(c=>c.CleanCSS(true).CleanElements(true).ListConversion(true).RemoveStyles(true))
        .ShowContextMenu(true)
        .Render();}

    Pasted Content before Cleanup:

    Pasted Content after Cleanup: