Re: bug?

* dj wrote:
>Just ran tidy for the first time (Included with UltraEdit 9.00c and am
>getting a log of the following warnings.
>
>line 155 column 8 - Warning: '<' + '/' + letter not allowed here
>
>Why?

Inside CDATA elements ('script' and 'style' in HTML) an occurence of the
mentioned sequence of '<' + '/' + a letter terminates the element. If
you need this sequence inside such elements, you need to escape it, e.g.
like

  document.write("<\/p>");

what Tidy is supposed to fix automatically.

Received on Sunday, 30 June 2002 01:23:19 UTC