TinyMCE β
For the usage of a TinyMCE editor we turn to the components provided by tiny.cloud.
We host the editor sources on our cdn in order to not run against the limitations of the free tier of the tiny cloud service. As too many tools link to one account and Test Automation increases the load usage of the service beyond the free limit.
The tinyMCE docs can be found here
Usage β
The source can be loaded from: https://assets.xerius.be/static/TinyMCE/7.0.1/tinymce.min.js
.
Example implementation:
With a framework (Vue/Angular/...) β
Here are the links to the docs:
for other forms of installation, check out the installing TinyMCE docs.
Without a framework β
In order to load tinyMCE on your page just add the following script block to your html
head
block:
html
<head>
...
<script
src="https://assets.xerius.be/static/TinyMCE/7.0.1/tinymce.min.js"
referrerpolicy="origin"
></script>
...
</head>
More information can be found in the quick start.