When I try to add the elements below, CuteEditor likes to modify the Relative paths.
I have highlighted the stuff CuteEditor adds in red.
How can I tell CuteEditor to NOT manipulate this code, just leave it as is??
Sample Code before Cute Editor modifies the code
<IMG src="http://test.dev.server.com/imgaes/sample.gif">
<IMG src="/Images/sample.gif">
<A href="http://test.dev.server.com/default.asp">Test</A>
<A href="default.asp">Test</A>
Sample Code after Cute Editor modifies the code
<IMG src="http://test.dev.server.com/imgaes/sample.gif">
<IMG src="http://test.dev.server.com/Images/sample.gif">
<A href="http://test.dev.server.com/default.asp">Test</A>
<A href="http://test.dev.server.com/default.asp">Test</A>