# SCAYT parameters for CKEditor 4

Here you can find a list of all available SCAYT parameters for CKEditor 4.0+ that can be used for the SCAYT configuration. For more details, refer to [CKEDITOR configuration documentation](https://docs.ckeditor.com/ckeditor4/latest/api/CKEDITOR_config.html).

<details>

<summary><strong>scayt_autoStartup</strong> (boolean)</summary>

Turns SCAYT on/off automatically after the editor loads.

Values: `true`, `false`

Default: `true`

Example:

```javascript
config.scayt_autoStartup = true;
```

</details>

<details>

<summary><strong>grayt_autoStartup (boolean)</strong></summary>

Automatically turns Grammar As You Type (GRAYT) on/off once SCAYT has started.

Values: `true`, `false`

Default: `true`

Example:

```javascript
config.grayt_autoStartup = false;
```

</details>

### grayt\_autoStartup <a href="#scaytparametersforckeditor4-grayt_autostartup" id="scaytparametersforckeditor4-grayt_autostartup"></a>

| Description:     | **grayt\_autoStartup** parameter turns Grammar As You Type (GRAYT) on/off automatically once SCAYT has started. |
| ---------------- | --------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Boolean                                                                                                         |
| Default value:   | true                                                                                                            |
| Possible values: | <ul><li>true</li><li>false</li></ul>                                                                            |

Example:

```javascript
config.grayt_autoStartup = false;
```

### scayt\_inlineModeImmediateMarkup <a href="#scaytparametersforckeditor4-scayt_inlinemodeimmediatemarkup" id="scaytparametersforckeditor4-scayt_inlinemodeimmediatemarkup"></a>

| Description:     | **scayt\_inlineModeImmediateMarkup** parameter turns the SCAYT initiation on/off when Inline CKEditor is not focused. The SCAYT markup is taken place (SCAYT instance is not destroyed) in both Inline CKEditor's states, focused and unfocused. |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Parameter type:  | Boolean                                                                                                                                                                                                                                          |
| Default value:   | false                                                                                                                                                                                                                                            |
| Possible values: | <ul><li>true</li><li>false</li></ul>                                                                                                                                                                                                             |

Example:

```javascript
config.scayt_inlineModeImmediateMarkup = true;
```

### scayt\_maxSuggestions <a href="#scaytparametersforckeditor4-scayt_maxsuggestions" id="scaytparametersforckeditor4-scayt_maxsuggestions"></a>

| Description:     | **scayt\_maxSuggestions** parameter defines the number of SCAYT suggestions to show in the main context menu.                                                                                                                                                                                                           |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Number                                                                                                                                                                                                                                                                                                                  |
| Default value:   | 3                                                                                                                                                                                                                                                                                                                       |
| Possible values: | <ul><li>0 (zero) – No suggestions are shown in the main context menu. All suggestions will be shown in the “More Suggestions” sub-menu.</li><li>positive number – The max number of suggestions to show in the main context menu. Other entries will be listed in “More Suggestions”.</li><li>negative number</li></ul> |

Example:

```javascript
config.scayt_maxSuggestions = 3;
```

### scayt\_minWordLength <a href="#scaytparametersforckeditor4-scayt_minwordlength" id="scaytparametersforckeditor4-scayt_minwordlength"></a>

| Description:     | **scayt\_minWordLength** parameter defines the minimum length of the words that will be collected from editor's text for spell checking. |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Number                                                                                                                                   |
| Default value:   | 3                                                                                                                                        |
| Possible values: | any positive number                                                                                                                      |

Example:

```javascript
config.scayt_minWordLength = 2;
```

### scayt\_customerId <a href="#scaytparametersforckeditor4-scayt_customerid" id="scaytparametersforckeditor4-scayt_customerid"></a>

| Description:     | <p><strong>scayt\_customerId</strong> parameter sets a customer ID for Cloud SCAYT. It is required for migration from free, ad-supported version to paid, ad-free version.</p><p><strong>scayt\_customerId</strong> is intended for use only with the <strong>Cloud version of SCAYT.</strong></p> |
| ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                                                                                                                                             |
| Default value:   | The free version of SCAYT plugin is shipped with already predefined service ID value.                                                                                                                                                                                                              |
| Possible values: | your-service-id                                                                                                                                                                                                                                                                                    |

Example:

```javascript
config.scayt_customerId = 'your-service-id';
```

### scayt\_ignoreAllCapsWords <a href="#scaytparametersforckeditor4-scayt_ignoreallcapswords" id="scaytparametersforckeditor4-scayt_ignoreallcapswords"></a>

| Description:     | **scayt\_ignoreAllCapsWords** parameter regulates whether all capitalized words should be ignored. |
| ---------------- | -------------------------------------------------------------------------------------------------- |
| Parameter type:  | Boolean                                                                                            |
| Default value:   | false                                                                                              |
| Possible values: | <ul><li>true</li><li>false</li></ul>                                                               |

Example:

```javascript
config.scayt_ignoreAllCapsWords = true;
```

### scayt\_ignoreDomainNames <a href="#scaytparametersforckeditor4-scayt_ignoredomainnames" id="scaytparametersforckeditor4-scayt_ignoredomainnames"></a>

| Description:     | **scayt\_ignoreDomainNames** parameter regulates whether domain names and web addresses should be ignored. |
| ---------------- | ---------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Boolean                                                                                                    |
| Default value:   | false                                                                                                      |
| Possible values: | <ul><li>true</li><li>false</li></ul>                                                                       |

Example:

```javascript
config.scayt_ignoreDomainNames = true;
```

### scayt\_ignoreWordsWithMixedCases <a href="#scaytparametersforckeditor4-scayt_ignorewordswithmixedcases" id="scaytparametersforckeditor4-scayt_ignorewordswithmixedcases"></a>

| Description:     | **scayt\_ignoreWordsWithMixedCases** parameter regulates whether words with mixed case letters should be ignored. |
| ---------------- | ----------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Boolean                                                                                                           |
| Default value:   | false                                                                                                             |
| Possible values: | <ul><li>true</li><li>false</li></ul>                                                                              |

Example:

```javascript
config.scayt_ignoreWordsWithMixedCases = true;
```

### scayt\_ignoreWordsWithNumbers <a href="#scaytparametersforckeditor4-scayt_ignorewordswithnumbers" id="scaytparametersforckeditor4-scayt_ignorewordswithnumbers"></a>

| Description:     | **scayt\_ignoreWordsWithNumbers** parameter regulates whether words containing numbers should be ignored. |
| ---------------- | --------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Boolean                                                                                                   |
| Default value:   | false                                                                                                     |
| Possible values: | <ul><li>true</li><li>false</li></ul>                                                                      |

Example:

```javascript
config.scayt_ignoreWordsWithNumbers = true;
```

### scayt\_disableOptionsStorage <a href="#scaytparametersforckeditor4-scayt_disableoptionsstorage" id="scaytparametersforckeditor4-scayt_disableoptionsstorage"></a>

| Description:     | **scayt\_disableOptionsStorage** parameter defines whether SCAYT options storing should be disabled. It is allowed to pass an array of options.                                      |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Parameter type:  | Array                                                                                                                                                                                |
| Default value:   | ' '                                                                                                                                                                                  |
| Possible values: | <ul><li>' '</li><li>scayt\_ignoreAllCapsWords</li><li>scayt\_ignoreDomainNames</li><li>scayt\_ignoreWordsWithMixedCases</li><li>scayt\_ignoreWordsWithNumbers</li><li>lang</li></ul> |

Example:

```javascript
config.scayt_disableOptionsStorage = ['lang', 'ignore-all-caps-words', 'ignore-words-with-mixed-cases']];
```

### scayt\_moreSuggestions <a href="#scaytparametersforckeditor4-scayt_moresuggestions" id="scaytparametersforckeditor4-scayt_moresuggestions"></a>

| Description:     | **scayt\_moreSuggestions** parameter enables/disables the “More Suggestions” sub-menu in the context menu. |
| ---------------- | ---------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                     |
| Default value:   | on                                                                                                         |
| Possible values: | on, off                                                                                                    |

Example:

```javascript
config.scayt_moreSuggestions = 'off';
```

### scayt\_contextCommands <a href="#scaytparametersforckeditor4-scayt_contextcommands" id="scaytparametersforckeditor4-scayt_contextcommands"></a>

| Description:     | <p><strong>scayt\_contextCommands</strong> parameter manages and customizes the SCAYT context menu commands: Add Word, Ignore All, Options, Languages, Dictionaries and About. It is allowed to pass more than one value separating each value with a vertical bar.</p><p>Options, Languages and Dictionaries items can be added to the SCAYT context menu only if these items are present on the SCAYT settings dialog. The visibility of these items are regulated by the <a href="#scaytparametersforckeditor4-scayt_uitabsscayt_uitabs">scayt\_uiTabs</a> parameter.</p> |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Array                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| Default value:   | ignore\|ignoreall\|add                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| Possible values: | <ul><li>ignoreall</li></ul>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |

Example:

```javascript
//Show only the Add Word and Ignore All commands in the context menu.
config.scayt_contextCommands = 'add|ignoreall';
```

### scayt\_sLang <a href="#scaytparametersforckeditor4-scayt_slang" id="scaytparametersforckeditor4-scayt_slang"></a>

| Description:     | **scayt\_sLang** parameter sets a language short code of the default language that will be used for spell checking. |
| ---------------- | ------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                              |
| Default value:   | en\_US (American English)                                                                                           |
| Possible values: | <ul><li><a href="/pages/GUZ6cksYHij4R1JW5Nhz">Supported languages</a></li></ul>                                     |

Example:

```javascript
//Set the default language to German (de_DE).
config.scayt_sLang = 'de_DE';
```

### scayt\_uiTabs <a href="#scaytparametersforckeditor4-scayt_uitabsscayt_uitabs" id="scaytparametersforckeditor4-scayt_uitabsscayt_uitabs"></a>

| Description:     | <p><strong>scayt\_uiTabs</strong> parameter customizes the SCAYT settings dialog and manages visibility of particular tabs there such as Options, Languages, and Dictionaries.</p><p>By default, SCAYT settings dialog contains four tabs, namely <strong>Options</strong>, <strong>Languages</strong>, <strong>Dictionaries</strong>, and <strong>About</strong>. The <strong>About</strong> tab is used to provide the information about the SCAYT version and copyrights. Unlike <strong>Options</strong>, <strong>Languages</strong>, <strong>Dictionaries</strong> tabs, it can't be removed.</p> |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Parameter type:  | Array                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| Default value:   | 1,1,1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| Possible values: | <ul><li>0,0,0 – Hide all customizable tabs: <strong>Options</strong>, <strong>Languages</strong>, and <strong>Dictionaries</strong>.</li><li>0,1,0 – Hide the <strong>Options</strong> and <strong>Dictionaries</strong> tabs.</li><li>0,0,1 – Hide the <strong>Options</strong> and <strong>Languages</strong> tabs.</li><li>1,1,0 – Hide the <strong>Dictionaries</strong> tab.</li><li>1,0,1 – Hide the <strong>Language</strong> tab.</li><li>1,1,1 – Show all tabs: <strong>Options</strong>, <strong>Languages</strong>, and <strong>Dictionaries</strong>.</li></ul>                            |

Example:

```javascript
//Hide the Languages tab.
config.scayt_uiTabs = '1,0,1';
```

### scayt\_serviceProtocol <a href="#scaytparametersforckeditor4-scayt_serviceprotocol" id="scaytparametersforckeditor4-scayt_serviceprotocol"></a>

| Description:     | <p><strong>scayt\_serviceProtocol</strong> parameter specifies a protocol to access the SCAYT service. If this parameter is not specified, the protocol will be automatically defined based on the script location.</p><p>This is the parameter that intended for us with the <strong>Server version</strong> only.</p> |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                                                                                                                                                                  |
| Default value:   | https                                                                                                                                                                                                                                                                                                                   |
| Possible values: | <ul><li>http</li><li>https</li></ul>                                                                                                                                                                                                                                                                                    |

Example:

```javascript
config.scayt_serviceProtocol='https';
```

### scayt\_serviceHost <a href="#scaytparametersforckeditor4-scayt_servicehost" id="scaytparametersforckeditor4-scayt_servicehost"></a>

| Description:     | <p><strong>scayt\_serviceHost</strong> parameter specifies a service host name to access the SCAYT service. If this parameter is not specified clearly, the service host will be automatically defined based on the script location.</p><p>The SCAYT plugin which is shipped with the default CKEditor packages is pointed to the WebSpellChecker Cloud services. <strong>scayt\_serviceHost</strong> is already predefined in the plugin configuration.</p><p>If you are using the <strong>Server version</strong>, you need to specify the <strong>host name</strong> that you used during the installation of WebSpellChecker.</p> |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| Default value:   | [svc.webspellchecker.net](http://svc.webspellchecker.net/)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| Possible values: | <ul><li><a href="http://svc.webspellchecker.net/">svc.webspellchecker.net</a> – The default WebSpellChecker service host name. It is used for the WebSpellChecker Cloud services subscriptions.</li><li>your\_host\_name</li></ul>                                                                                                                                                                                                                                                                                                                                                                                                    |

Example:

```javascript
config.scayt_serviceHost='your_host_name';
```

### scayt\_servicePort <a href="#scaytparametersforckeditor4-scayt_serviceport" id="scaytparametersforckeditor4-scayt_serviceport"></a>

| Description:     | <p><strong>scayt\_servicePort</strong> parameter specifies a service port that will be used to access the SCAYT service.</p><p>This is the parameter that intended for us with the <strong>Server version</strong> only.</p> |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                                                                       |
| Default value:   | 80                                                                                                                                                                                                                           |
| Possible values: | <p>Any available port.</p><ul><li>2880 – default port that listens WebSpellChecker AppServer. Use this port if your are using the Server version.</li></ul>                                                                  |

Example:

```javascript
config.scayt_servicePort ='2880';
```

### scayt\_servicePath <a href="#scaytparametersforckeditor4-scayt_servicepath" id="scaytparametersforckeditor4-scayt_servicepath"></a>

| Description:     | **scayt\_servicePath** parameter specifies a path that will be used to access the SCAYT service.                                                                                                                                                                                                                                                                                                                                                                                        |
| ---------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| Default value:   | /virtual\_directory/script/ssrv.fcgi                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| Possible values: | <ul><li>Path to the <strong>ssrv.fcgi</strong> script. Use this if you are using the older versions of WebSpellChecker v4.x and the connection between your app and AppServer is confogured via FastCGI protocol (using SSRV.cgi component).</li><li>Use '<strong>/</strong>' if you are using the newer versions of WebSpellChecker v5.x. and you configured the direct connetion with AppServer. In this case also use <strong>config.scayt\_servicePort ='2880';.</strong></li></ul> |

Example:

```javascript
config.scayt_servicePath ='virtual_directory/script/ssrv.fcgi';
```

Or

```javascript
config.scayt_servicePath ='/';
```

### scayt\_srcUrl <a href="#scaytparametersforckeditor4-scayt_srcurl" id="scaytparametersforckeditor4-scayt_srcurl"></a>

| Description:     | <p><strong>scayt\_srcUrl</strong> parameter specifies a URL to the SCAYT core.</p><p><strong>scayt\_srcUrl</strong> is intended for use only with the Server version of SCAYT.</p> |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                             |
| Default value:   | http(s)://your\_host\_name/virtual\_directory/wscbundle/wscbundle.js                                                                                                               |
| Possible values: | <ul><li>http(s)://your\_host\_name/virtual\_directory/wscbundle/wscbundle.js</li><li>http(s)://your\_host\_name/virtual\_directory/lf/scayt3/ckscayt/ckscayt.js</li></ul>          |

Example:

```javascript
config.scayt_srcUrl ='http(s)://your_host_name/virtual_directory/wscbundle/wscbundle.js"';
```

### scayt\_customDictionaryIds <a href="#scaytparametersforckeditor4-scayt_customdictionaryids" id="scaytparametersforckeditor4-scayt_customdictionaryids"></a>

| Description:     | **scayt\_customDictionaryIds** parameter specifies a custom dictionary ID that will be linked with SCAYT. |
| ---------------- | --------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                    |
| Default value:   | None                                                                                                      |
| Possible values: | IDs of custom dictionaries.                                                                               |

Example:

```javascript
config.scayt_customDictionaryIds='3021,3456,3478';
```

### scayt\_userDictionaryName <a href="#scaytparametersforckeditor4-scayt_userdictionaryname" id="scaytparametersforckeditor4-scayt_userdictionaryname"></a>

| Description:     | **scayt\_userDictionaryName** parameter predefines a specific user dictionary that will be used with SCAYT. |
| ---------------- | ----------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                      |
| Default value:   | None                                                                                                        |
| Possible values: | Any name of a user dictionary.                                                                              |

Example:

```javascript
config.scayt_userDictionaryName='user_dictionary_name';
```

### scayt\_contextMenuItemsOrder <a href="#scaytparametersforckeditor4-scayt_contextmenuitemsorder" id="scaytparametersforckeditor4-scayt_contextmenuitemsorder"></a>

| Description:     | **scayt\_contextMenuItemsOrder** parameter defines the order of SCAYT context menu items by groups. This must be a string with one or more of the following words separated by a pipe character ('\|'). |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                                                                                                                                  |
| Default value:   | suggest\|moresuggest\|control                                                                                                                                                                           |
| Possible values: | <ul><li>suggest – main suggestion word list;</li><li>moresuggest – more suggestions word list;</li><li>control – SCAYT commands, such as “Ignore” and “Add Word”.</li></ul>                             |

Example:

```javascript
config.scayt_contextMenuItemsOrder = 'moresuggest|control|suggest';
```

### scayt\_elementsToIgnore <a href="#scaytparametersforckeditor4-scayt_elementstoignore" id="scaytparametersforckeditor4-scayt_elementstoignore"></a>

| Description:     | **scayt\_elementsToIgnore** parameter defines HTML tags that will be ignored during check spelling. |
| ---------------- | --------------------------------------------------------------------------------------------------- |
| Parameter type:  | String                                                                                              |
| Default value:   | 'style'                                                                                             |
| Possible values: | Any HTML tag                                                                                        |

Example:

```javascript
config.scayt_elementsToIgnore='del,pre'';
```

### scayt\_multiLanguageMode <a href="#scaytparametersforckeditor4-scayt_multilanguagemodescayt_multilanguagemodetruereddeprecated-or-wsc5" id="scaytparametersforckeditor4-scayt_multilanguagemodescayt_multilanguagemodetruereddeprecated-or-wsc5"></a>

{% hint style="warning" %}
DEPRECATED | WSC 5.3.2
{% endhint %}

| Description:     | <p><strong>scayt\_multiLanguageMode</strong> parameter turns on/off a special multi-language support mode.</p><p>scayt\_multiLanguageMode parameter was specifically designed to work with a certain language plugin for CKEditor. Before using this parameter, CKEditor <a href="https://ckeditor.com/cke4/addon/language">Language</a> plugin must be added.</p> |
| ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Parameter type:  | Boolean                                                                                                                                                                                                                                                                                                                                                            |
| Default value:   | false                                                                                                                                                                                                                                                                                                                                                              |
| Possible values: | <ul><li>true – multi-language support turns on after the editor loading.</li><li>false</li></ul>                                                                                                                                                                                                                                                                   |

Example:

```javascript
config.scayt_multiLanguageMode='true';
```

### scayt\_multiLanguageStyles <a href="#scaytparametersforckeditor4-scayt_multilanguagestylestruereddeprecated-or-wsc5.3.2" id="scaytparametersforckeditor4-scayt_multilanguagestylestruereddeprecated-or-wsc5.3.2"></a>

{% hint style="warning" %}
DEPRECATED | WSC 5.3.2
{% endhint %}

| Description:     | <p><strong>scayt\_multiLanguageStyles</strong> parameter allows defining additional styles for misspelled words specific for a particular language.</p><p>scayt\_multiLanguageStyles can be used only if the <a href="#scaytparametersforckeditor4-scayt_multilanguagemodescayt_multilanguagemodetruereddeprecated-or-wsc5.">scayt\_multiLanguageMode</a> parameter is set to “true”.</p>                         |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Parameter type:  | Object                                                                                                                                                                                                                                                                                                                                                                                                            |
| Default value:   | None                                                                                                                                                                                                                                                                                                                                                                                                              |
| Possible values: | <p>{<br>'Language\_short\_code': 'background-image: none; color: #cc22cc',<br>'el': 'background-image: none; color: blue',<br>'nl': 'background-image: none; color: red',<br>'fi': 'background-image: none; color: indigo',<br>'fr': 'background-image: none; color: orange',<br>'de': 'background-image: none; color: green'<br>};</p><p>All short codes should be presented according ISO 639-1:2002 codes.</p> |

Example:

```javascript
config.scayt_multiLanguageStyles= {'fr': 'color: green'};
```

<br>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.wproofreader.com/v6.12.0/integrations/legacy-scayt/scayt-parameters-for-ckeditor-4.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
