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
Post a Comment