Selaa lähdekoodia

Docs: Added proper keywords and minor tweaks.

Piotrek Koszuliński 8 vuotta sitten
vanhempi
commit
063539ef2e
2 muutettua tiedostoa jossa 35 lisäystä ja 2 poistoa
  1. 30 0
      packages/ckeditor5-core/docs/api/core.md
  2. 5 2
      packages/ckeditor5-core/package.json

+ 30 - 0
packages/ckeditor5-core/docs/api/core.md

@@ -0,0 +1,30 @@
+---
+category: api-reference
+---
+
+# CKEditor 5 core editor architecture
+
+[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-core.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-core)
+
+This package implements the core editor architecture – a set of classes and interfaces which glue all the things together.
+
+## Documentation
+
+See the introduction to the {@link framework/guides/architecture/intro#Core-editor-architecture core editor architecture}.
+
+## Installation
+
+```bash
+npm install --save @ckeditor/ckeditor5-core
+```
+
+## Contribute
+
+The source code of this package is available on GitHub in https://github.com/ckeditor/ckeditor5-core.
+
+## External links
+
+* [`@ckeditor/ckeditor5-core` on npm](https://www.npmjs.com/package/@ckeditor/ckeditor5-core)
+* [`ckeditor/ckeditor5-core` on GitHub](https://github.com/ckeditor/ckeditor5-core)
+* [Issue tracker](https://github.com/ckeditor/ckeditor5-core/issues)
+* [Changelog](https://github.com/ckeditor/ckeditor5-core/blob/master/CHANGELOG.md)

+ 5 - 2
packages/ckeditor5-core/package.json

@@ -1,8 +1,11 @@
 {
   "name": "@ckeditor/ckeditor5-core",
   "version": "0.9.0",
-  "description": "The CKEditor 5 core editor architecture.",
-  "keywords": [],
+  "description": "CKEditor 5 core editor architecture.",
+  "keywords": [
+    "ckeditor5",
+    "ckeditor5-lib"
+  ],
   "dependencies": {
     "@ckeditor/ckeditor5-engine": "^0.11.0",
     "@ckeditor/ckeditor5-utils": "^0.10.0"