Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to allow some custom tags to be entered into TinyMCE. The tag is

<plug:plugin_name />

However this is turned into

<plug:plugin_name></plug:plugin_name>

I'm about to write a regex to deal with this as I have to get the job done, I'd really rather not, but it will fix my issue.

I've tried many of the init options:

extended_valid_elements : "plug.plugin_name[*]",
custom_elements: "plug.plugin_name[*]",
verify_html : false, **//This ment that the tag wasn't ouright removed**
selfclosetags : \" />\", //some plugin I found, didn't seem to work
closed : /^(br|hr|input|meta|img|link|param|area|plug:plugin_name)$/,

Anyone else definitely got this to work with a recent version of TinyMCE?

Also, another problem will be the editor will strip away the tag, after I have fixed it with the regex!

share|improve this question
what version of tinymce are you using? – Thariama May 24 '11 at 8:53
3.4.2 Another problem is when the editor first loads, it will remove the <plug:plugin_name /> tag as well! – Chris Barry May 24 '11 at 13:52
hmm, as far as i know the check for valid elements (the algorithm) has changed from version 3.9.x to 3.4.x . Why do you use 3.4.x? this version is still beta. I will switch to 3.4.x if it is stable enough. – Thariama May 24 '11 at 14:12
What kind of information is it that you need to save? Can it be done without markup or perhaps with another element? – Betamos Jun 19 '11 at 18:57
It is to use the editor with Indexhibit, and it uses a custom tag. Will probably not be an issue in the next version of Indexhibit. – Chris Barry Jul 13 '11 at 17:05
show 2 more comments

1 Answer

Instead of:

closed : /^(br|hr|input|meta|img|link|param|area|plug:plugin_name)$/,

Does this work?

closed : /^(br|hr|input|meta|img|link|param|area|plug)$/,

Note the last item "plug" without the : modifier.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.