You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
911 B
911 B
paste_word_valid_elements
{% include DEPRECATED/generic-5_10.md %}
This option enables you to configure the valid_elements
specific to MS Office. Word produces a lot of junk HTML, so when users paste things from Word we do extra restrictive filtering on it to remove as much of this as possible. This option enables you to specify which elements and attributes you want to include when Word contents are intercepted.
Note: To access this feature, you need to set the value of paste_enable_default_filters to
"false"
in your configuration.
Type: String
Example: Using paste_word_valid_elements
tinymce.init({
selector: 'textarea', // change this value according to your HTML
plugins: 'paste',
menubar: 'edit',
toolbar: 'paste',
paste_word_valid_elements: 'b,strong,i,em,h1,h2'
});