Merge pull request #609 from techtangents/prolink

Feature Spell Checker Pro in Spelling configuration
This commit is contained in:
Mattias
2017-10-20 10:29:23 +02:00
committed by GitHub
5 changed files with 14 additions and 3 deletions
+2
View File
@@ -140,6 +140,8 @@
- url: "#style_formats_merge"
- url: "spelling"
pages:
- title: "Spell Checker Pro"
url: "#spellcheckerpro"
- url: "#browser_spellcheck"
- url: "#gecko_spellcheck"
- url: "file-image-upload"
@@ -1,6 +1,8 @@
## browser_spellcheck
One of the several spell checking options developers have available is to use the browser's native spell checker. `browser_spellcheck` handles this behavior. `browser_spellcheck` is not available in either Internet Explorer 8 or 9, as neither browser has native spell checker functionality.
This option configures TinyMCE to use the browser's native spell checker.
`browser_spellcheck` is not available in either Internet Explorer 8 or 9, as neither browser has native spell checker functionality. For more complete browser support, we recommend using [Spell Checker Pro](../../enterprise/check-spelling/).
**Type:** `Boolean`
@@ -0,0 +1,5 @@
## Spell Checker Pro
TinyMCE Spell Checker Pro is a premium feature that allows spell checking as-you-type and custom dictionary words.
For more information, see [Check Spelling As-You-Type](../../enterprise/check-spelling/) in the Premium Features section.
+1 -1
View File
@@ -8,7 +8,7 @@
{% endif %}
{% if link.url contains '#' %}
{% capture address %}{{ include.preceding_address }}#{{ link.url | anchor }}{% endcapture %}
<a class="anchor" href="{{ site.baseurl }}{{ address }}">{{ link.url | remove:'#' }}</a>
<a class="anchor" href="{{ site.baseurl }}{{ address }}">{{ link.title | or:link.url | remove:'#' }}</a>
{% else %}
{% capture address %}{{ include.preceding_address }}{{ link.url }}/{% endcapture %}
{% capture address_index %}{{ address }}index.html{% endcapture %}
+3 -1
View File
@@ -2,9 +2,11 @@
layout: default
title: Spelling
description_short:
description: These settings affect whether the browser's internal spell checker should be used.
description: TinyMCE spell checking
---
{% include configuration/spell-checker-pro.md %}
{% include configuration/browser-spellcheck.md %}
{% include configuration/gecko-spellcheck.md %}