I've got a requirement in Templating (TS6.5, Windows) to generate output containing proprietary tags. I'd like to be able to virtualize previews and generated output in TeamSite (instead of converting the tags to the desired format during a workflow).
All I've got to do is is strip out these tags like this:
<image src="pt://image/images/something.gif"> ... should turn into:
<image src="/images/something.gif">
Where the heck do I put a regex to do this? The iwproxy_preconnect_remap section does not seem to be the place. Plus, an admin advised me that the presence of the ":" char has "special" meaning in this context that prevents this regex from every being fired up (but he could not elaborate).
Thanks in advance for guidance.