Is it possible to use dynamic variables in tinyMCE?
Here's the use case I have in mind:
- User adds an image in source view like this
<img src="{imagepath}/logo.gif" />
or one is added programmatically using setContent(). - User switches to design view - {imagepath} is expanded to http://someserver.com/ and the image is correctly shown with the expanded url.
- User opens image properties - The url is shown as {imagepath}/logo.gif
- User switches back to source view and the {imagepath} variable is still shown.
- getContent() returns the source with variables intact.