diff --git a/extension/Documentation/UsersManual/Index.rst b/extension/Documentation/UsersManual/Index.rst
index e64afc5cf4adbaaf0c29e84b62865d0f606f7fea..32d6b4a8da4895a74e7298b3d5d30d1af66e9607 100644
--- a/extension/Documentation/UsersManual/Index.rst
+++ b/extension/Documentation/UsersManual/Index.rst
@@ -827,28 +827,27 @@ Type: text
 Type: editor
 ^^^^^^^^^^^^
 
-* TinyMCE (www.tinymce.com, community edition) is used as the QFQ Rich Text Editor.
+* TinyMCE (https://www.tinymce.com, community edition) is used as the QFQ Rich Text Editor.
 * The content will be saved as HTML inside the database.
 * All configuration and plugins will be configured via the 'parameter' field. Just prepend the word 'editor-' in front
-  of each TinyMCE keyword. Check options under https://www.tinymce.com/docs/configure/,
+  of each TinyMCE keyword. Check possible options under https://www.tinymce.com/docs/configure/,
   https://www.tinymce.com/docs/plugins/, https://www.tinymce.com/docs/advanced/editor-control-identifiers/#toolbarcontrols
 * Bars:
 
   * Top: *menubar* - by default hidden.
   * Top: *toolbar* - by default visible.
-  * Bottom: *statusbar* - by default hidden. Exception: min_height *and* max_height are given via size parameter.
+  * Bottom: *statusbar* - by default hidden, exception: *min_height* and *max_height* are given via size parameter.
+
 
 * The default setting is::
 
-    editor-plugins='code link searchreplace table textcolor textpattern visualchars'
-    editor-toolbar='code searchreplace undo redo | styleselect link table | fontselect fontsizeselect |
-                    bullist numlist outdent indent | forecolor backcolor bold italic'
-    editor-menubar=false
+    editor-plugins=code link searchreplace table textcolor textpattern visualchars
+    editor-toolbar=code searchreplace undo redo | styleselect link table | fontselect fontsizeselect | bullist numlist outdent indent | forecolor backcolor bold italic editor-menubar=false
     editor-statusbar=false
 
 * size:
 
-  * <min_height>,<max_height>: in pixels, including top and bottom bars.
+  * <min_height>,<max_height>: in pixels, including top and bottom bars. E.g.: 300,600
 
 
 Type: note