8
0
Просмотр исходного кода

Docs: Replaced duplicated overview with a link to autoformatting feature documentation. [skip ci]

Wiktor Walc 8 лет назад
Родитель
Сommit
7987e43c3d
1 измененных файлов с 2 добавлено и 34 удалено
  1. 2 34
      packages/ckeditor5-autoformat/src/autoformat.js

+ 2 - 34
packages/ckeditor5-autoformat/src/autoformat.js

@@ -12,40 +12,8 @@ import InlineAutoformatEngine from './inlineautoformatengine';
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 
 /**
- * Includes a set of predefined autoformatting actions.
- *
- * ## Bulleted list
- *
- * You can create a bulleted list by starting a line with:
- *
- * * `* `
- * * `- `
- *
- * ## Numbered list
- *
- * You can create a numbered list by starting a line with:
- *
- * * `1. `
- * * `1) `
- *
- * ## Headings
- *
- * You can create a heading by starting a line with:
- *
- * * `# ` – will create Heading 1,
- * * `## ` – will create Heading 2,
- * * `### ` – will create Heading 3.
- *
- * ## Bold and italic
- *
- * You can apply bold or italic to a text by typing Markdown formatting:
- *
- * * `**foo bar**` or `__foo bar__` – will bold the text.
- * * `*foo bar*` or `_foo bar_` – will italicize the text.
- *
- * NOTE: Remember to add proper features to the editor configuration. Autoformatting will be enabled only for the
- * commands that are included in the actual configuration. For example: `bold` autoformatting will not work if there is no
- * `bold` command registered in the editor.
+ * Includes a set of predefined autoformatting actions. For a detailed overview, check
+ * the {@linkTODO features/autoformat Autoformatting feature documentation}.
  *
  * @extends module:core/plugin~Plugin
  */