I want to extend the rte of Umbraco with a custom editor, something like the Embed-media editor. But I can't seem to find some documentation about extending the rte with your own editors.
I found the umbraco.controllers.js, which is a huge file with a lot of angular modules. But I don't think it's the way to go to just edit this file... considering Umbraco upgrades.
1) Add new section to /config/tinyMceConfig.config like that :
2) Add
to
3) Add plugin.min.js file to /umbraco/lib/tinymce/plugins/fontsizeselect folder, create it if there no such file. It's your js file for controling logic.
Creating a custom rte plugin / editor
Hi,
I want to extend the rte of Umbraco with a custom editor, something like the Embed-media editor. But I can't seem to find some documentation about extending the rte with your own editors.
I found the umbraco.controllers.js, which is a huge file with a lot of angular modules. But I don't think it's the way to go to just edit this file... considering Umbraco upgrades.
Can somebody point me in to the right direction?
Kind regards, Berend
Hi Berend,
You have to do few steps:
1) Add new section to /config/tinyMceConfig.config like that :
2) Add to
3) Add plugin.min.js file to /umbraco/lib/tinymce/plugins/fontsizeselect folder, create it if there no such file. It's your js file for controling logic.
Documentation - http://www.tinymce.com/wiki.php/Configuration
Thanks, Alex
is working on a reply...