javascript - TinyMCE Custom Elements with a ' : '? -


so i'm looking allow thymeleaf tags inside tinymce editor (using angular-ui-tinymce if matters)

i understand basic format

 extended_valid_elements : 'script[charset|language|type|src]' 

but how use allow things like

 <p th:text="..."> //or// <img th:src="..."/> 

before asks, yes necessary have both tinymce , thymeleaf, , no don't need thymeleaf work inside tinymce, need editor stop stripping tags.

try putting in tinymce configuration:

valid_elements: "*[*]" 

Comments

Popular posts from this blog

javascript - Slick Slider width recalculation -

jsf - PrimeFaces Datatable - What is f:facet actually doing? -

angular2 services - Angular 2 RC 4 Http post not firing -