Procházet zdrojové kódy

Docs: Improved links between API and guides. See ckeditor/ckeditor5#1090.

Piotrek Koszuliński před 7 roky
rodič
revize
582382b954

+ 1 - 1
packages/ckeditor5-list/src/list.js

@@ -15,7 +15,7 @@ import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 /**
  * The list feature.
  *
- * It loads the {@link module:list/listediting~ListEditing list editing feature}
+ * This is a "glue" plugin which loads the {@link module:list/listediting~ListEditing list editing feature}
  * and {@link module:list/listui~ListUI list UI feature}.
  *
  * @extends module:core/plugin~Plugin

+ 2 - 1
packages/ckeditor5-list/src/listediting.js

@@ -31,7 +31,8 @@ import {
 
 /**
  * The engine of the list feature. It handles creating, editing and removing lists and list items.
- * It registers the `numberedList`, `bulletedList`, `indentList` and `outdentList` commands.
+ *
+ * It registers the `'numberedList'`, `'bulletedList'`, `'indentList'` and `'outdentList'` commands.
  *
  * @extends module:core/plugin~Plugin
  */

+ 1 - 1
packages/ckeditor5-list/src/listui.js

@@ -14,7 +14,7 @@ import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
 
 /**
- * The list UI feature. It introduces the `numberedList` and `bulletedList` buttons that
+ * The list UI feature. It introduces the `'numberedList'` and `'bulletedList'` buttons that
  * allow to convert paragraphs to and from list items and indent or outdent them.
  *
  * @extends module:core/plugin~Plugin