Преглед изворни кода

Rename guide add better description to the feature.

Mateusz Samsel пре 6 година
родитељ
комит
5025934eb0
2 измењених фајлова са 31 додато и 13 уклоњено
  1. 31 0
      docs/features/spell-checking.md
  2. 0 13
      docs/features/wproofreader.md

+ 31 - 0
docs/features/spell-checking.md

@@ -0,0 +1,31 @@
+---
+category: features
+---
+
+# Spell checking
+
+{@snippet build-classic-source}
+
+[WebSpellChecker](https://webspellchecker.com/) with [WProofreader](https://webspellchecker.com/wsc-proofreader/#proofreader-ckeditor5) brings support for spell checking in the editor. This product is a multilingual proofreading tool which provides grammar and spellchecking features to the editor.
+
+## Demo
+
+{@snippet features/wproofreader}
+
+## Installation
+
+WProofreader is installed separately from CKEditor5 and cannot be combined into a bundle as other features. To use this tool, it is necessary to provide separate configuration for WProofreader besides CKEditor5.
+
+Example configuration for this feature, when is hosted on the cloud might be found bellow:
+```html
+<script type="text/javascript" src="https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js"></script>
+<script>
+  window.WEBSPELLCHECKER_CONFIG = {
+    autoSearch: true,
+    enableGrammar: true,
+    serviceId: 'your-service-ID'
+  };
+</script>
+```
+
+More details about installation and configuration options might be found under [this link](https://github.com/WebSpellChecker/wproofreader#get-started).

+ 0 - 13
docs/features/wproofreader.md

@@ -1,13 +0,0 @@
----
-category: features
----
-
-# WProofreader
-
-{@snippet build-classic-source}
-
-The editor can be integrated with [WProofreader](https://webspellchecker.com/wsc-proofreader/#proofreader-ckeditor5).
-
-See the demo below:
-
-{@snippet features/wproofreader}