You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

7.5 KiB

layout title description_short description keywords
default Specify Editor & Plugin Versions Specifying editor and plugin versions for Tiny Cloud deployments. Specifying editor and plugin versions for Tiny Cloud deployments. tinymce cloud script textarea apiKey

Specifying the TinyMCE editor version deployed from Cloud

Use the URL provided to specify the TinyMCE version when deploying via Tiny Cloud. Refer to [TinyMCE editor via the Tiny Cloud]({{ site.baseurl }}/cloud-deployment-guide/editor-and-features) for more information.

Please note as Tinymce 5 is currently under development, The traditional https://cloud.tinymce.com/stable/tinymce.min.js is currently serving the latest Tinymce 4x. From February 4, 2019, at 2pm Pacific Standard Time (GMT-8). The '/stable/' link will default to serving Tinymce 5.

The following example is the default for loading TinyMCE via Tiny Cloud:

<script src="https://cloud.tinymce.com/5-stable/tinymce.min.js?apiKey=your_API_key"></script>

The stable in this URL specifies the latest, and quality assured release of TinyMCE.

Selecting specific version numbers

Support for requesting specific versions of TinyMCE 5 will be available after TinyMCE 5 RC becomes stable. It should work in a similar way as Tinymce 4. In the meantime, there are 3 release channels available, see the section below.

dev, testing, and stable releases

Choose from dev, testing, or stable release channels to load the latest version of TinyMCE from Tiny Cloud.

These channels are updated automatically and provide the latest TinyMCE version that matches the criteria below.

dev release channel

This channel deploys the absolute latest version of TinyMCE as documented in [TinyMCE changelog]({{ site.baseurl }}/changelog/). The current version of TinyMCE available through the dev channel can be found at here.

Example
<script src="https://cloud.tinymce.com/5-dev/tinymce.min.js?apiKey=your_API_key"></script>

testing release channel

This channel deploys the current release candidate for the stable channel. The TinyMCE release candidate is undergoing quality assurance. The current version of TinyMCE available through the testing channel can be found at here.

Example
<script src="https://cloud.tinymce.com/5-testing/tinymce.min.js?apiKey=your_API_key"></script>

stable release channel

This channel deploys the latest release of TinyMCE that has passed our quality assurance process. The current version of TinyMCE available through the stable channel can be found here.

Example
<script src="https://cloud.tinymce.com/5-stable/tinymce.min.js?apiKey=your_API_key"></script>

Specifying the version of features/plugins deployed from Tiny Cloud

Use the URL query parameters to specify the version of each premium plugin. This is used when deployment is by the [TinyMCE editor and premium plugins via Tiny Cloud]({{ site.baseurl }}/cloud-deployment-guide/editor-and-features) or deploying [only premium plugins from Tiny Cloud]({{ site.baseurl }}/cloud-deployment-guide/features-only).

PowerPaste

Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&powerpaste=2.1.8"></script>

Spell Checker Pro

  • [Developer documentation]({{ site.baseurl }}/plugins/tinymcespellchecker)
  • Supported versions
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&tinymcespellchecker=0.9.6"></script>

Accessibility Checker

Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&a11ychecker=1.0.2"></script>

Advanced Code Editor

Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&advcode=1.0.2"></script>

Enhanced Media Embed

Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&mediaembed=0.0.1"></script>
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&linkchecker=1.0.0"></script>

Specifying a self-hosted deployment of features/plugins

If you're deploying [only premium plugins from Tiny Cloud]({{ site.baseurl }}/cloud-deployment-guide/features-only), you may want to have some features served from Tiny Cloud and some features served from your self-hosted installation. This is also possible with URL query parameters and the special version name "SDK".

The "SDK" version lets the TinyMCE Plugin Manager know that you're not using Tiny Cloud version of a particular plugin and that it shouldn't serve the plugin from Tiny Cloud. It also won't display any warning or error messages if you're not entitled to it.

PowerPaste

  • [Developer documentation]({{ site.baseurl }}/plugins/powerpaste)
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&powerpaste=sdk"></script>

Spell Checker Pro

  • [Developer documentation]({{ site.baseurl }}/plugins/tinymcespellchecker)
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&tinymcespellchecker=sdk"></script>

Accessibility Checker

  • [Developer documentation]({{ site.baseurl }}/plugins/a11ychecker)
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&a11ychecker=sdk"></script>

Advanced Code Editor

  • [Developer documentation]({{ site.baseurl }}/plugins/advcode/)
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&advcode=sdk"></script>

Enhanced Media Embed

  • [Developer documentation]({{ site.baseurl }}/plugins/mediaembed/)
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&mediaembed=sdk"></script>
  • [Developer documentation]({{ site.baseurl }}/plugins/linkchecker/)
Example
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&linkchecker=sdk"></script>

Examples

Featuring declared editor and plugin versions

Support for requesting specific versions of TinyMCE 5 and plugin versions will be available after TinyMCE 5 RC becomes stable. The process will work similar to Tinymce 4. For now only the latest version is available via cloud.