TinyMCE nestable plugins - tinymce

I am evaluating a migration from CKEditor 4 to TinyMCE 6. I have custom plugins in CKEditor that allow for defining areas where nested content or plugins can be placed. In theory, you can nest up to any depth. Is this something TinyMCE plugin's can do?
Here is an example of an existing CKEditor plugin that I have.

Related

integrating Xtext with SWT Styled text

I'm working on an eclipse plugin in which I have a wizard with several pages. on one of the pages, I need to integrate xtext editor in SWT styled text text area.
I have looked at documentation but didn't find any help in this regard.

Eclipse freemarker template highliting

Eclipse Luna shows freemarker template this way:
It does not highlite any html tags inside freemarker template. Is it correct for Eclipse? May be some hidden setting is present somewhere to enable it?
Unfortunately, the plugin (the one under JBoss Tools) doesn't know HTML highlighting. I'm also unaware of any that does that.
You can use NetBeans with this plugin:
http://plugins.netbeans.org/plugin/58284/freemarker-support-for-netbeans
It highlights FreeMarker and HTML markup ;-)

how to add my own templates to eclipse in play! framework editor

I've noticed that the play plugin for eclipse adds a play editor,
along with several useful templates
I'd like to add my own ones, but I couldn't find the way to do it
I go to window, preferences, web, html files, templates and I can add
templates to eclipse html editor, but I couldn't find a similar option
for play editor
Check out the source code for the play plugin :
https://github.com/playframework/playclipse/tree/master/source/templates
You might want to fork it and add your templates to that file. That is what I would do. But I do not have enough Eclipse development knowledge to help you further than point the direction.
I had a lok at the source, it seems like the template editor tags are defined here
https://github.com/playframework/playclipse/blob/master/source/src/org/playframework/playclipse/editors/html/HTMLEditor.java
looks like there's no support for creating your own templates thru eclipse...

How can I get autocomplete for CSS3 properties on Eclipse (Helios)

Please note that I already have CSS autocomplete support active, I need the CSS3 properties and other proprietary properties for CSS like border-raduis, ::selection, -mozkit and -webkit properties.
You could install the Aptana Studio 3.0.3 plugin which has support for CSS3 properties. Aptana Ticket #1986 shows a way to enable matching for browser vendor specific extensions. Ticket #1495 is also relevant.
WARNING! I read on How do I add FTP support to Eclipse?, that the plugin could potentially overwrite or re-organise a lot of your Eclipse workspace. This is an older answer now, so the new version of plugin might be better. I wouldn't want my advice to break your Eclipse without warning you first :-)

Is there a mustache template syntax highlighter or plugin for Eclipse?

I'm looking for a Mustache template syntax highlighter / plugin in Eclipse
Does one exist? I don't seem to be finding anything on google, and I don't know how to write my own for Eclipse.
Although not perfect, you can use Eclipse and set MUSTACHE template files to HTML.
Go to Eclipse->Preferences->General->Content_Types
Edit CONTENT_TYPE to add a file association of .mustache
Go to Eclipse->Preferences->General->Editor->File_Associations
You should see the default HTML editors already set. If not, add a .mustache editor of your choice. I used HTML_EDITOR.
Although it won't syntax highlight the {{ }}, it's still easier to read.
There doesn't seem to be any plugin for supporting mustache Editors and views (see Eclipse MarketPlace).
That leaves only for now using an external supported editor (i.e. outside of Eclipse)