According to the HTML 4.01 specifications, it is an error to start the NAME or ID tags with a digit. For example, in the default templates that MT provides at installation, the following is used:
CODE
<a name="<$MTEntryID pad="1"$>"></a>
According to the specifications, something similar to the following would be more preferable:
CODE
<a name="mt_<$MTEntryID pad="1"$>"></a>
For the sake of future compatability, that is.
For more information, please see:
http://www.w3.org/TR/html4/types.html#type-cdata"ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods ("."). "
Just trying to make a really great product even better.