I want to be able to insert empty div and span elements, text like [something], but when I save TinyMCE is removing all this code.

Is there a config option that tells TinyMCE to return me the exact text I've entered?

Thanks.

link|improve this question

73% accept rate
feedback

1 Answer

Yes, you need to change your valid_elements config option to somethin like

    // The valid_elements option defines which elements will remain in the edited text when the editor saves.
    valid_elements: "@[id|class|title|style|onmouseover]," +
    "a[name|href|target|title|alt]," +
    "p,blockquote,-ol,-ul,-li,br,img[src|height|width],-sub,-sup,-b,-i,-u," +
    "span[data-mce-type],hr",

Iportant here is that the 'P' and 'span' elements does not have a minus standing right before.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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