I'm working with TinyMCE editor with some old webpage content.
All HTML content could contain "links" to images in format ".. <img src="##IMAGE:1234##"/> ..
".
I need to show image in HTML preview, but in code it has to stay in format "..<img src="##IMAGE:1234##"/>..
"
I know URL to download/inline all images => http://example.com/images/1234
Do I need to parse editor content, replace IMG src by URL + ID from original IMG src (##IMAGE:1234##
).
Is there some way, how to have in HTML code mode something like this "..<img src="##IMAGE:1234##"/>..
", but in preview mode have image displayed?
Thanks