浏览代码

Rename core/indent to indent.

Maciej Gołaszewski 6 年之前
父节点
当前提交
531720c5cb

+ 4 - 4
packages/ckeditor5-indent/src/indent.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module core/indent/indent
+ * @module indent/indent
  */
 
 import Plugin from '../plugin';
@@ -18,14 +18,14 @@ import IndentUI from './indentui';
  * This plugin acts as a single entry point plugin for other features that implement indenting of elements like lists or paragraphs.
  *
  * The compatible features are:
- 
+ *
  * - the {@link module:list/list~List} or {@link module:list/listediting~ListEditing} feature for list indentation
  * * the {@link module:list/list~List} or {@link module:list/listediting~ListEditing} feature for list indentation
  *
  * This is a "glue" plugin which loads the following plugins:
  *
- * * The {@link module:core/indent/indentediting~IndentEditing indent editing feature} and
- * * The {@link module:core/indent/indentui~IndentUI indent UI feature}.
+ * * The {@link module:indent/indentediting~IndentEditing indent editing feature} and
+ * * The {@link module:indent/indentui~IndentUI indent UI feature}.
  *
  * The dependent plugins register the `'indent'` and `'outdent'` commands and it introduce the `'indent'` and `'outdent'` buttons
  * which allow to increase or decrease text indentation of supported elements.

+ 1 - 1
packages/ckeditor5-indent/src/indentblock.js

@@ -18,7 +18,7 @@ import IndentUsingClasses from './indentcommandbehavior/indentusingclasses';
  *
  * It registers the `'indentBlock'` and `'outdentBlock'` commands.
  *
- * If the plugin {@link module:core/indent/indent~Indent} is defined it also attaches the `'indentBlock'` and `'outdentBlock'` commands to
+ * If the plugin {@link module:indent/indent~Indent} is defined it also attaches the `'indentBlock'` and `'outdentBlock'` commands to
  * `'indent'` and `'outdent'` commands.
  *
  * @extends module:core/plugin~Plugin

+ 2 - 2
packages/ckeditor5-indent/src/indentediting.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module core/indent/indentediting
+ * @module indent/indentediting
  */
 
 import Plugin from '../plugin';
@@ -16,7 +16,7 @@ import MultiCommand from '../multicommand';
  * This plugin registers the `'indent'` and `'outdent'` commands.
  *
  * **Note**: In order the commands to work at least one of compatible features is required. Read more in
- * {@link module:core/indent/indent~Indent indent feature} api docs.
+ * {@link module:indent/indent~Indent indent feature} api docs.
  *
  * @extends module:core/plugin~Plugin
  */

+ 2 - 2
packages/ckeditor5-indent/src/indentui.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module core/indent/indentui
+ * @module indent/indentui
  */
 import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
 
@@ -16,7 +16,7 @@ import Plugin from '../plugin';
  * This plugin registers the `'indent'` and `'outdent'` buttons.
  *
  * **Note**: In order the commands to work at least one of compatible features is required. Read more in
- * {@link module:core/indent/indent~Indent indent feature} api docs.
+ * {@link module:indent/indent~Indent indent feature} api docs.
  *
  * @extends module:core/plugin~Plugin
  */