When using
Edit --> Copy As... --> HTML -->
The editor has problems with strings that look like HTML tags
 Quote:

$SO=SetOption("Explicit", "ON")
$SO=SETOPTION("NoMacrosInStrings", "ON")
$SO=SETOPTION("NoVarsInStrings", "ON")
$SO=SETOPTION("WrapAtEOL", "ON")
BREAK ON
DIM $String
$String = "Yes<PRE>Test</PRE>No"
If InSTR($String,"</PRE>"
"Yes" ?
Else
"No" ?
EndIf