Some Perl scripts that may complete without error from the command line, will generate errors when used in CuteHTML Pro.
CuteHTML Pro will not compensate for reserved characters lacking an escape sequence. Make sure to escape any reserved characters in your code before running it in CuteHTML Pro.
For example, this script may parse correctly from commandline, but CuteHTML Pro will return errors:
print "<meta http-equiv="Content-Type" content="text/html\; charset=iso-8859-1"></HEAD><BODY>\n";
To run the script without errors in CuteHTML Pro, the reserved double-quote (") characters need to be escaped as shown below:
print "<meta http-equiv=\"Content-Type\" content=\"text/html\; charset=iso-8859-1\"></HEAD><BODY>\n";