Maciek пре 9 година
родитељ
комит
7d8e7b0559

+ 6 - 3
packages/ckeditor5-basic-styles/src/bold.js

@@ -3,6 +3,10 @@
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
+/**
+ * @module basic-styles/bold
+ */
+
 import Plugin from '../core/plugin.js';
 import Plugin from '../core/plugin.js';
 import BoldEngine from './boldengine.js';
 import BoldEngine from './boldengine.js';
 import ButtonView from '../ui/button/buttonview.js';
 import ButtonView from '../ui/button/buttonview.js';
@@ -10,10 +14,9 @@ import ButtonView from '../ui/button/buttonview.js';
 /**
 /**
  * The bold feature. It introduces the Bold button and the <kbd>Ctrl+B</kbd> keystroke.
  * The bold feature. It introduces the Bold button and the <kbd>Ctrl+B</kbd> keystroke.
  *
  *
- * It uses the {@link basic-styles.BoldEngine bold engine feature}.
+ * It uses the {@link module:basic-styles/boldengine~BoldEngine bold engine feature}.
  *
  *
- * @memberOf basic-styles
- * @extends core.Plugin
+ * @extends module:core/plugin~Plugin
  */
  */
 export default class Bold extends Plugin {
 export default class Bold extends Plugin {
 	/**
 	/**

+ 5 - 2
packages/ckeditor5-basic-styles/src/boldengine.js

@@ -3,6 +3,10 @@
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
+/**
+ * @module basic-styles/boldengine
+ */
+
 import Plugin from '../core/plugin.js';
 import Plugin from '../core/plugin.js';
 import buildModelConverter from '../engine/conversion/buildmodelconverter.js';
 import buildModelConverter from '../engine/conversion/buildmodelconverter.js';
 import buildViewConverter from '../engine/conversion/buildviewconverter.js';
 import buildViewConverter from '../engine/conversion/buildviewconverter.js';
@@ -16,8 +20,7 @@ const BOLD = 'bold';
  * It registers the `bold` command and introduces the `bold` attribute in the model which renders to the view
  * It registers the `bold` command and introduces the `bold` attribute in the model which renders to the view
  * as a `<strong>` element.
  * as a `<strong>` element.
  *
  *
- * @memberOf basic-styles
- * @extends core.Plugin
+ * @extends module:core/plugin~Plugin
  */
  */
 export default class BoldEngine extends Plugin {
 export default class BoldEngine extends Plugin {
 	/**
 	/**

+ 6 - 3
packages/ckeditor5-basic-styles/src/italic.js

@@ -3,6 +3,10 @@
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
+/**
+ * @module basic-styles/italic
+ */
+
 import Plugin from '../core/plugin.js';
 import Plugin from '../core/plugin.js';
 import ItalicEngine from './italicengine.js';
 import ItalicEngine from './italicengine.js';
 import ButtonView from '../ui/button/buttonview.js';
 import ButtonView from '../ui/button/buttonview.js';
@@ -10,10 +14,9 @@ import ButtonView from '../ui/button/buttonview.js';
 /**
 /**
  * The italic feature. It introduces the Italic button and the <kbd>Ctrl+I</kbd> keystroke.
  * The italic feature. It introduces the Italic button and the <kbd>Ctrl+I</kbd> keystroke.
  *
  *
- * It uses the {@link basic-styles.ItalicEngine italic engine feature}.
+ * It uses the {@link module:basic-styles/italicengine~ItalicEngine italic engine feature}.
  *
  *
- * @memberOf basic-styles
- * @extends core.Plugin
+ * @extends module:core/plugin~Plugin
  */
  */
 export default class Italic extends Plugin {
 export default class Italic extends Plugin {
 	/**
 	/**

+ 5 - 2
packages/ckeditor5-basic-styles/src/italicengine.js

@@ -3,6 +3,10 @@
  * For licensing, see LICENSE.md.
  * For licensing, see LICENSE.md.
  */
  */
 
 
+/**
+ * @module basic-styles/italicengine
+ */
+
 import Plugin from '../core/plugin.js';
 import Plugin from '../core/plugin.js';
 import buildModelConverter from '../engine/conversion/buildmodelconverter.js';
 import buildModelConverter from '../engine/conversion/buildmodelconverter.js';
 import buildViewConverter from '../engine/conversion/buildviewconverter.js';
 import buildViewConverter from '../engine/conversion/buildviewconverter.js';
@@ -16,8 +20,7 @@ const ITALIC = 'italic';
  * It registers the `italic` command and introduces the `italic` attribute in the model which renders to the view
  * It registers the `italic` command and introduces the `italic` attribute in the model which renders to the view
  * as an `<em>` element.
  * as an `<em>` element.
  *
  *
- * @memberOf basic-styles
- * @extends core.Plugin
+ * @extends module:core/plugin~Plugin
  */
  */
 export default class ItalicEngine extends Plugin {
 export default class ItalicEngine extends Plugin {
 	/**
 	/**