suneditor 2.45.1 → 2.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # SunEditor
2
2
  Vanilla javascript based WYSIWYG web editor, with no dependencies.
3
3
  SunEditor supports IE11 and all modern browsers with no dependencies and polyfill.
4
+ Coded based on ES5 in supported by IE11.
4
5
 
5
6
  #### Demo : <a href="http://suneditor.com" target="_blank">suneditor.com</a>
6
7
 
@@ -390,6 +391,7 @@ plugins: [
390
391
  // * {custom_plugin, ...plugins}
391
392
 
392
393
  // Values
394
+ strictMode : Option to disable clean mode, which checks the styles, classes, etc. of the editor content. default : false {Boolean}
393
395
  lang : language object. default : en {Object}
394
396
  defaultTag : Specifies default tag name of the editor. default: 'p' {String}
395
397
  textTags : You can change the tag of the default text button. default: { bold: 'STRONG', underline: 'U', italic: 'EM', strike: 'DEL' }