Explorar o código

Docs: Improved docs.

Oskar Wróbel %!s(int64=8) %!d(string=hai) anos
pai
achega
65a719da9c

+ 3 - 2
packages/ckeditor5-core/src/editor/editor.js

@@ -21,8 +21,9 @@ import mix from '@ckeditor/ckeditor5-utils/src/mix';
 
 /**
  * Class representing the base of the editor. It is the API all plugins can expect to get when using editor property.
- * Editors implementation (like Classic Editor or Inline Editor) should extend this class. They can add their own
- * methods and properties.
+ * Editors implementation (like {@link module:editor-classic/classiceditor~ClassicEditor Classic Editor} or
+ * {@link module:editor-inline/inlineeditor~InlineEditor Inline Editor}) should extend this class. They can add their
+ * own methods and properties.
  *
  * @mixes module:utils/observablemixin~ObservableMixin
  */

+ 3 - 0
packages/ckeditor5-core/src/editor/utils/datainterface.js

@@ -8,6 +8,9 @@
  */
 
 /**
+ * Interface provides methods for setting and getting data to/from editor main root element of the model tree
+ * using {@link module:core/editor/editor~Editor#data data pipeline}.
+ *
  * @mixin module:core/editor/utils/datainterface~DataInterface
  */
 const DataInterface = {

+ 2 - 0
packages/ckeditor5-core/src/editor/utils/elementinterface.js

@@ -11,6 +11,8 @@ import setDataInElement from '@ckeditor/ckeditor5-utils/src/dom/setdatainelement
  */
 
 /**
+ * Interface provides method for setting and getting data from/to element on which editor has been initialized.
+ *
  * @mixin module:core/editor/utils/elementinterface~ElementInterface
  */
 const ElementInterface = {