Contents

[edit]

Tidy: ... ID "..." uses XML ID syntax

[edit]

Cause:

An ID attribute does not conform with the HTML document type specification. ID tokens must begin with a letter, and may contain only letters, digits, hyphens, underscores, colons, and periods.

[edit]

Example:

<li> ID "_note-0" uses XML ID syntax

Good<li id="_note-0">Note number zero.</li>
Good<li id="note-0">Note number zero.</li>
[edit]

Solution:

Choose another name for the ID.

[edit]

References:

Retrieved from "http://www.htmlpedia.org/wiki/Tidy_71"