8
0
Quellcode durchsuchen

Docs: First part of the architecture introduction guide.

Piotrek Koszuliński vor 8 Jahren
Ursprung
Commit
0c2112e97b

+ 9 - 9
docs/api/index.md

@@ -7,16 +7,16 @@ Use the navigation tree on the left to navigate through CKEditor API.
 
 ## Popular API pages
 
- * {@link module:core/editor/editorconfig~EditorConfig Configuration Reference} – CKEditor configuration settings explained.
- * {@link module:editor-classic/classiceditor~ClassicEditor `ClassicEditor`} – The entry point for the Classic editor integration.
- * {@link module:editor-inline/inlineeditor~InlineEditor `InlineEditor`} – The entry point for the Inline editor integration.
- * {@link module:editor-balloon/ballooneditor~BalloonEditor `BalloonEditor`} – The entry point for the Balloon editor integration.
- 
-## Documentation 
+* {@link module:core/editor/editorconfig~EditorConfig Configuration Reference} – CKEditor configuration settings explained.
+* {@link module:editor-classic/classiceditor~ClassicEditor `ClassicEditor`} – The entry point for the Classic editor integration.
+* {@link module:editor-inline/inlineeditor~InlineEditor `InlineEditor`} – The entry point for the Inline editor integration.
+* {@link module:editor-balloon/ballooneditor~BalloonEditor `BalloonEditor`} – The entry point for the Balloon editor integration.
 
- * {@link framework/index CKEditor 5 Framework} – Learn how to develop with CKEditor 5 Framework, customize it and create plugins.
- * {@link builds/guides/overview CKEditor 5 Builds} – Learn how to install, integrate and configure CKEditor 5 Builds. More complex aspects, like creating custom builds, are explained here, too.
- * {@link features/index Features} – Learn about some of the features included in CKEditor 5 Builds.
+## Documentation
+
+* {@link framework/index CKEditor 5 Framework} – Learn how to develop with CKEditor 5 Framework, customize it and create plugins.
+* {@link builds/guides/overview CKEditor 5 Builds} – Learn how to install, integrate and configure CKEditor 5 Builds. More complex aspects, like creating custom builds, are explained here, too.
+* {@link features/index Features} – Learn about some of the features included in CKEditor 5 Builds.
 
 ## Contribute
 

Datei-Diff unterdrückt, da er zu groß ist
+ 246 - 0
docs/framework/guides/architecture/intro.md


+ 1 - 1
docs/framework/guides/quick-start.md

@@ -188,7 +188,7 @@ Let's start from installing necessary dependencies:
 * the [`@ckeditor/ckeditor5-image`](https://www.npmjs.com/package/@ckeditor/ckeditor5-image) package which contains the image feature (on which our plugin will rely),
 * the [`@ckeditor/ckeditor5-core`](https://www.npmjs.com/package/@ckeditor/ckeditor5-core) package which contains the {@link module:core/plugin~Plugin} and {@link module:core/command~Command} classes.
 * the [`@ckeditor/ckeditor5-engine`](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine) package which contains the editing engine.
-* * the [`@ckeditor/ckeditor5-ui`](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui) package which contains the UI library and framework.
+* the [`@ckeditor/ckeditor5-ui`](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui) package which contains the UI library and framework.
 
 ```bash
 npm install --save @ckeditor/ckeditor5-image @ckeditor/ckeditor5-core @ckeditor/ckeditor5-engine

+ 3 - 3
docs/umberto.json

@@ -30,9 +30,9 @@
 					"slug": "guides",
 					"categories": [
 						{
-							"name": "Editing engine",
-							"id": "framework-engine",
-							"slug": "engine",
+							"name": "Architecture",
+							"id": "framework-architecture",
+							"slug": "architecture",
 							"order": 100
 						},
 						{