Below are all the validator's error messages for which we have an "explanation".
This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->. This error may appear if you forget the last "--" to close one comment, therefore including the rest of the content in your comment.
Did you forget to close a (double) quote mark?
This error may appear if you are using a bad syntax for your comments, such as "<!invalid comment>" The proper syntax for comments is <!-- your comment here -->.
This error may appear when the validator receives an empty document. Please make sure that the document you are uploading is not empty, and report any discrepancy.
You have used character data somewhere it is not permitted to appear. Mistakes that can cause this error include:
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
The next message, "start tag was here
"
points to the particular instance of the tag in question); the
positional indicator points to where the validator expected you to close the
tag.
This is not an error, but rather a pointer to the start tag of the element the previous error referred to.
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
This is not an error, but rather a pointer to the start tag of the element the previous error referred to.
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.
You have used the element named above in your document, but the document type you are using does not define an element of that name. This error is often caused by:
The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.
If this error occurred in a script section of your document, you should probably read this FAQ entry.
You have used a character that is not considered a "name character" in an attribute value. Which characters are considered "name characters" varies between the different document types, but a good rule of thumb is that unless the value contains only lower or upper case letters in the range a-z you must put quotation marks around the value. In fact, unless you have extreme file size requirements it is a very very good idea to always put quote marks around your attribute values. It is never wrong to do so, and very often it is absolutely necessary.
An attribute name (and some attribute values) must start with one of a restricted set of characters. This error usually indicates that you have failed to add a closing quotation mark on a previous attribute value (so the attribute value looks like the start of a new attribute) or have used an attribute that is not defined (usually a typo in a common attribute name).
"VI delimiter" is a technical term for the equal sign. This error message means that the name of an attribute and the equal sign cannot be omitted when specifying an attribute. A common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.
How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.
Have you forgotten the "equal" sign marking the separation
between the attribute and its declared value?
Typical syntax is attribute="value"
.
You have specified an attribute more than once. Example: Using
the "height
" attribute twice on the same
"img
" tag.
This error almost always means that you've forgotten a closing quote on an attribute value. For instance, in:
<img src="fred.gif>
<!-- 50 lines of stuff -->
<img src="joe.gif">
The "src
" value for the first
<img>
is the entire
fifty lines of stuff up to the next double quote, which probably
exceeds the SGML-defined
length limit for HTML
string literals. Note that the position indicator in the error
message points to where the attribute value ended — in
this case, the "joe.gif"
line.
The value of an attribute contained something that is not allowed by
the specified syntax for that type of attribute. For instance, the
“selected
” attribute must be
either minimized as “selected
”
or spelled out in full as “selected="selected"
”; the variant
“selected=""
” is not allowed.
It is possible that you violated the naming convention for this attribute.
For example, id
and name
attributes must begin with
a letter, not a digit.
This attribute can not take a space-separated list of words as a value, but only one word ("token"). This may also be caused by the use of a space for the value of an attribute which does not permit it.
The value of this attribute should be a number, and you probably used a wrong syntax.
It is possible that you violated the naming convention for this attribute.
For example, id
and name
attributes must begin with
a letter, not a digit.
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type
are
type="text/css"
for <style>
and type="text/javascript"
for <script>
.
The value of the attribute is defined to be one of a list of possible
values but in the document it contained something that is not allowed
for that type of attribute. For instance, the “selected
” attribute must be either
minimized as “selected
”
or spelled out in full as “selected="selected"
”; a value like
“selected="true"
” is not
allowed.
Check that you are using a proper syntax for your comments, e.g: <!-- comment here -->. This error may appear if you forget the last "--" to close one comment, and later open another.
You have used an illegal character in your text. HTML uses the standard UNICODE Consortium character repertoire, and it leaves undefined (among others) 65 character codes (0 to 31 inclusive and 127 to 159 inclusive) that are sometimes used for typographical quote marks and similar in proprietary character sets. The validator has found one of these undefined characters in your document. The character may appear on your browser as a curly quote, or a trademark symbol, or some other fancy glyph; on a different computer, however, it will likely appear as a completely different character, or nothing at all.
Your best bet is to replace the character with the nearest equivalent ASCII character, or to use an appropriate character entity. For more information on Character Encoding on the web, see Alan Flavell's excellent HTML Character Set Issues reference.
This error can also be triggered by formatting characters embedded in documents by some word processors. If you use a word processor to edit your HTML documents, be sure to use the "Save as ASCII" or similar command to save the document without formatting information.
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
This error can be triggered by:
Try to check the spelling and case of the id you are referring to.
The document type could not be determined, because the document had no correct DOCTYPE declaration. The document does not look like HTML, therefore automatic fallback could not be performed, and the document was only checked against basic markup syntax.
Learn how to add a doctype to your document
from our FAQ, or use the validator's
Document Type
option to validate your document against a specific Document Type.
The construct <foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.
The sequence <FOO /> can be interpreted in at least two different ways, depending on the DOCTYPE of the document. For HTML 4.01 Strict, the '/' terminates the tag <FOO (with an implied '>'). However, since many browsers don't interpret it this way, even in the presence of an HTML 4.01 Strict DOCTYPE, it is best to avoid it completely in pure HTML documents and reserve its use solely for those written in XHTML.
The construct </foo<bar> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.
A DOCTYPE declares the version of the language used, as well as what the root (top) element of your document will be. For example, if the top element of your document is <html>, the DOCTYPE declaration will look like: "<!DOCTYPE html".
In most cases, it is safer not to type or edit the DOCTYPE declaration at all, and preferable to let a tool include it, or copy and paste it from a trusted list of DTDs.
This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&) in an URL or body text. See the previous message for further details.
The construct <> is sometimes valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.
The construct </> is valid in HTML (it is an example of the rather obscure “Shorttags” feature) but its use is not recommended. In most cases, this is a typo that you will want to fix. If you really want to use shorttags, be aware that they are not well implemented by browsers.
An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (;). The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs".
Entity references start with an ampersand (&) and end with a semicolon (;). If you want to use a literal ampersand in your document you must encode it as "&" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and æ are different characters.
If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem.
Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed.
The checked page did not contain a document type ("DOCTYPE") declaration. The Validator has tried to validate with a fallback DTD, but this is quite likely to be incorrect and will generate a large number of incorrect error messages. It is highly recommended that you insert the proper DOCTYPE declaration in your document -- instructions for doing this are given above -- and it is necessary to have this declaration before the page can be declared to be valid.
Your document includes a DOCTYPE declaration with a public identifier (e.g. "-//W3C//DTD XHTML 1.0 Strict//EN") but no system identifier (e.g. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"). This is authorized in HTML (based on SGML), but not in XML-based languages.
If you are using a standard XHTML document type, it is recommended to use exactly one of the DOCTYPE declarations from the recommended list on the W3C QA Website.
This may happen if you have consecutive comments but did not close one of them properly. The proper syntax for comments is <!-- my comment -->.
If you meant to include an entity that starts with "&", then you should terminate it with ";". Another reason for this error message is that you inadvertently created an entity by failing to escape an "&" character just before this text.
This is generally the sign of an ampersand that was not properly escaped for inclusion in an attribute, in a href for example. You will need to escape all instances of '&' into '&'.
This message may appear in several cases:
This error may occur when there is a mistake in how a self-closing tag is closed, e.g '.../ >'. The proper syntax is '... />' (note the position of the space).
You've included a character reference to a character that is not defined in the document type you've chosen. This is most commonly caused by numerical references to characters from vendor proprietary character repertoires. Often the culprit will be fancy or typographical quote marks from either the Windows or Macintosh character repertoires.
The solution is to reference UNICODE characters instead. A list of common characters from the Windows character repertoire and their UNICODE equivalents can be found in the document "On the use of some MS Windows characters in HTML" maintained by Jukka Korpela <jkorpela@cs.tut.fi>.
The following validation errors do not have an explanation yet. We invite you to use the feedback.html#errormsg">feedback channels to send your suggestions.
0: length of name must not exceed NAMELEN (X) feedback.html?errmsg_id=0#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
1: length of parameter entity name must not exceed NAMELEN less the length of the PERO delimiter (X) feedback.html?errmsg_id=1#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
2: length of number must not exceed NAMELEN (X) feedback.html?errmsg_id=2#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
3: length of attribute value must not exceed LITLEN less NORMSEP (X) feedback.html?errmsg_id=3#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
4: a name group is not allowed in a parameter entity reference in the prolog feedback.html?errmsg_id=4#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
5: an entity end in a token separator must terminate an entity referenced in the same group feedback.html?errmsg_id=5#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
6: character X invalid: only Y and token separators allowed feedback.html?errmsg_id=6#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
7: a parameter separator is required after a number that is followed by a name start character feedback.html?errmsg_id=7#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
8: character X invalid: only Y and parameter separators allowed feedback.html?errmsg_id=8#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
9: an entity end in a parameter separator must terminate an entity referenced in the same declaration feedback.html?errmsg_id=9#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
10: an entity end is not allowed in a token separator that does not follow a token feedback.html?errmsg_id=10#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
11: X is not a valid token here feedback.html?errmsg_id=11#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
12: a parameter entity reference can only occur in a group where a token could occur feedback.html?errmsg_id=12#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
13: token X has already occurred in this group feedback.html?errmsg_id=13#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
14: the number of tokens in a group must not exceed GRPCNT (X) feedback.html?errmsg_id=14#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
15: an entity end in a literal must terminate an entity referenced in the same literal feedback.html?errmsg_id=15#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
16: character X invalid: only minimum data characters allowed feedback.html?errmsg_id=16#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
18: a parameter literal in a data tag pattern must not contain a numeric character reference to a non-SGML character feedback.html?errmsg_id=18#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
19: a parameter literal in a data tag pattern must not contain a numeric character reference to a function character feedback.html?errmsg_id=19#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
20: a name group is not allowed in a general entity reference in a start tag feedback.html?errmsg_id=20#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
21: a name group is not allowed in a general entity reference in the prolog feedback.html?errmsg_id=21#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
22: X is not a function name feedback.html?errmsg_id=22#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
23: X is not a character number in the document character set feedback.html?errmsg_id=23#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
24: parameter entity X not defined feedback.html?errmsg_id=24#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
26: RNI delimiter must be followed by name start character feedback.html?errmsg_id=26#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
29: comment started here feedback.html?errmsg_id=29#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
30: only one type of connector should be used in a single group feedback.html?errmsg_id=30#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
31: X is not a reserved name feedback.html?errmsg_id=31#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
32: X is not allowed as a reserved name here feedback.html?errmsg_id=32#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
33: length of interpreted minimum literal must not exceed reference LITLEN (X) feedback.html?errmsg_id=33#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
34: length of tokenized attribute value must not exceed LITLEN less NORMSEP (X) feedback.html?errmsg_id=34#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
35: length of system identifier must not exceed LITLEN (X) feedback.html?errmsg_id=35#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
36: length of interpreted parameter literal must not exceed LITLEN (X) feedback.html?errmsg_id=36#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
37: length of interpreted parameter literal in data tag pattern must not exceed DTEMPLEN (X) feedback.html?errmsg_id=37#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
39: X invalid: only Y and parameter separators are allowed feedback.html?errmsg_id=39#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
40: X invalid: only Y and token separators are allowed feedback.html?errmsg_id=40#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
41: X invalid: only Y and token separators are allowed feedback.html?errmsg_id=41#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
43: X declaration not allowed in DTD subset feedback.html?errmsg_id=43#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
44: character X not allowed in declaration subset feedback.html?errmsg_id=44#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
45: end of document in DTD subset feedback.html?errmsg_id=45#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
46: character X not allowed in prolog feedback.html?errmsg_id=46#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
48: X declaration not allowed in prolog feedback.html?errmsg_id=48#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
49: X used both a rank stem and generic identifier feedback.html?errmsg_id=49#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
50: omitted tag minimization parameter can be omitted only if OMITTAG NO is specified feedback.html?errmsg_id=50#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
51: element type X already defined feedback.html?errmsg_id=51#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
52: entity reference with no applicable DTD feedback.html?errmsg_id=52#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
53: invalid comment declaration: found X outside comment but inside comment declaration feedback.html?errmsg_id=53#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
54: comment declaration started here feedback.html?errmsg_id=54#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
55: X declaration not allowed in instance feedback.html?errmsg_id=55#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
56: non-SGML character not allowed in content feedback.html?errmsg_id=56#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
57: no current rank for rank stem X feedback.html?errmsg_id=57#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
58: duplicate attribute definition list for notation X feedback.html?errmsg_id=58#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
59: duplicate attribute definition list for element X feedback.html?errmsg_id=59#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
60: entity end not allowed in end tag feedback.html?errmsg_id=60#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
61: character X not allowed in end tag feedback.html?errmsg_id=61#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
62: X invalid: only S separators and TAGC allowed here feedback.html?errmsg_id=62#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
66: document type does not allow element X here; assuming missing Y start-tag feedback.html?errmsg_id=66#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
67: no start tag specified for implied empty element X feedback.html?errmsg_id=67#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
72: start tag omitted for element X with declared content feedback.html?errmsg_id=72#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
74: start tag for X omitted, but its declaration does not permit this feedback.html?errmsg_id=74#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
75: number of open elements exceeds TAGLVL (X) feedback.html?errmsg_id=75#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
77: empty end tag but no open elements feedback.html?errmsg_id=77#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
78: X not finished but containing element ended feedback.html?errmsg_id=78#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
80: internal parameter entity X cannot be CDATA or SDATA feedback.html?errmsg_id=80#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
81: character X not allowed in attribute specification list feedback.html?errmsg_id=81#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
83: entity end not allowed in attribute specification list except in attribute value literal feedback.html?errmsg_id=83#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
84: external parameter entity X cannot be CDATA, SDATA, NDATA or SUBDOC feedback.html?errmsg_id=84#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
85: duplicate declaration of entity X feedback.html?errmsg_id=85#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
86: duplicate declaration of parameter entity X feedback.html?errmsg_id=86#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
87: a reference to a PI entity is allowed only in a context where a processing instruction could occur feedback.html?errmsg_id=87#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
88: a reference to a CDATA or SDATA entity is allowed only in a context where a data character could occur feedback.html?errmsg_id=88#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
89: a reference to a subdocument entity or external data entity is allowed only in a context where a data character could occur feedback.html?errmsg_id=89#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
90: a reference to a subdocument entity or external data entity is not allowed in replaceable character data feedback.html?errmsg_id=90#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
91: the number of open entities cannot exceed ENTLVL (X) feedback.html?errmsg_id=91#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
92: a reference to a PI entity is not allowed in replaceable character data feedback.html?errmsg_id=92#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
93: entity X is already open feedback.html?errmsg_id=93#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
94: short reference map X not defined feedback.html?errmsg_id=94#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
95: short reference map in DTD must specify associated element type feedback.html?errmsg_id=95#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
96: short reference map in document instance cannot specify associated element type feedback.html?errmsg_id=96#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
97: short reference map X for element Y not defined in DTD feedback.html?errmsg_id=97#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
98: X is not a short reference delimiter feedback.html?errmsg_id=98#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
99: short reference delimiter X already mapped in this declaration feedback.html?errmsg_id=99#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
100: no document element feedback.html?errmsg_id=100#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
102: entity end not allowed in processing instruction feedback.html?errmsg_id=102#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
103: length of processing instruction must not exceed PILEN (X) feedback.html?errmsg_id=103#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
104: missing PIC delimiter feedback.html?errmsg_id=104#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
106: X is not a member of a group specified for any attribute feedback.html?errmsg_id=106#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
109: an attribute value specification must start with a literal or a name character feedback.html?errmsg_id=109#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
110: length of name token must not exceed NAMELEN (X) feedback.html?errmsg_id=110#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
113: duplicate definition of attribute X feedback.html?errmsg_id=113#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
114: data attribute specification must be omitted if attribute specification list is empty feedback.html?errmsg_id=114#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
115: marked section end not in marked section declaration feedback.html?errmsg_id=115#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
116: number of open marked sections must not exceed TAGLVL (X) feedback.html?errmsg_id=116#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
117: missing marked section end feedback.html?errmsg_id=117#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
118: marked section started here feedback.html?errmsg_id=118#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
119: entity end in character data, replaceable character data or ignored marked section feedback.html?errmsg_id=119#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
126: non-impliable attribute X not specified but OMITTAG NO and SHORTTAG NO feedback.html?errmsg_id=126#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
128: first occurrence of CURRENT attribute X not specified feedback.html?errmsg_id=128#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
129: X is not a notation name feedback.html?errmsg_id=129#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
130: X is not a general entity name feedback.html?errmsg_id=130#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
132: X is not a data or subdocument entity feedback.html?errmsg_id=132#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
133: content model is ambiguous: when no tokens have been matched, both the Y and Z occurrences of X are possible feedback.html?errmsg_id=133#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
134: content model is ambiguous: when the current token is the Y occurrence of X, both the a and b occurrences of Z are possible feedback.html?errmsg_id=134#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
135: content model is ambiguous: when the current token is the Y occurrence of X and the innermost containing AND group has been matched, both the a and b occurrences of Z are possible feedback.html?errmsg_id=135#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
136: content model is ambiguous: when the current token is the Y occurrence of X and the innermost Z containing AND groups have been matched, both the b and c occurrences of a are possible feedback.html?errmsg_id=136#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
138: comment declaration started here feedback.html?errmsg_id=138#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
140: data or replaceable character data in declaration subset feedback.html?errmsg_id=140#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
142: ID X first defined here feedback.html?errmsg_id=142#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
143: value of fixed attribute X not equal to default feedback.html?errmsg_id=143#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
144: character X is not significant in the reference concrete syntax and so cannot occur in a comment in the SGML declaration feedback.html?errmsg_id=144#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
145: minimum data of first minimum literal in SGML declaration must be ""ISO 8879:1986"" or ""ISO 8879:1986 (ENR)"" or ""ISO 8879:1986 (WWW)"" not X feedback.html?errmsg_id=145#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
146: parameter before LCNMSTRT must be NAMING not X feedback.html?errmsg_id=146#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
147: unexpected entity end in SGML declaration: only X, S separators and comments allowed feedback.html?errmsg_id=147#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
148: X invalid: only Y and parameter separators allowed feedback.html?errmsg_id=148#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
149: magnitude of X too big feedback.html?errmsg_id=149#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
150: character X is not significant in the reference concrete syntax and so cannot occur in a literal in the SGML declaration except as the replacement of a character reference feedback.html?errmsg_id=150#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
151: X is not a valid syntax reference character number feedback.html?errmsg_id=151#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
152: a parameter entity reference cannot occur in an SGML declaration feedback.html?errmsg_id=152#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
153: X invalid: only Y and parameter separators are allowed feedback.html?errmsg_id=153#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
154: cannot continue because of previous errors feedback.html?errmsg_id=154#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
155: SGML declaration cannot be parsed because the character set does not contain characters having the following numbers in ISO 646: X feedback.html?errmsg_id=155#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
156: the specified character set is invalid because it does not contain the minimum data characters having the following numbers in ISO 646: X feedback.html?errmsg_id=156#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
157: character numbers declared more than once: X feedback.html?errmsg_id=157#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
158: character numbers should have been declared UNUSED: X feedback.html?errmsg_id=158#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
159: character numbers missing in base set: X feedback.html?errmsg_id=159#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
160: characters in the document character set with numbers exceeding X not supported feedback.html?errmsg_id=160#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
161: invalid formal public identifier X: missing // feedback.html?errmsg_id=161#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
162: invalid formal public identifier X: no SPACE after public text class feedback.html?errmsg_id=162#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
163: invalid formal public identifier X: invalid public text class feedback.html?errmsg_id=163#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
164: invalid formal public identifier X: public text language must be a name containing only upper case letters feedback.html?errmsg_id=164#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
165: invalid formal public identifer X: public text display version not permitted with this text class feedback.html?errmsg_id=165#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
166: invalid formal public identifier X: extra field feedback.html?errmsg_id=166#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
167: public text class of public identifier in notation identifier must be NOTATION feedback.html?errmsg_id=167#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
168: base character set X is unknown feedback.html?errmsg_id=168#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
169: delimiter set is ambiguous: X and Y can be recognized in the same mode feedback.html?errmsg_id=169#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
170: characters with the following numbers in the syntax reference character set are significant in the concrete syntax but are not in the document character set: X feedback.html?errmsg_id=170#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
171: there is no unique character in the document character set corresponding to character number X in the syntax reference character set feedback.html?errmsg_id=171#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
172: there is no unique character in the internal character set corresponding to character number X in the syntax reference character set feedback.html?errmsg_id=172#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
173: the character with number X in ISO 646 is significant but has no representation in the syntax reference character set feedback.html?errmsg_id=173#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
174: capacity set X is unknown feedback.html?errmsg_id=174#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
175: capacity X already specified feedback.html?errmsg_id=175#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
176: value of capacity X exceeds value of TOTALCAP feedback.html?errmsg_id=176#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
177: syntax X is unknown feedback.html?errmsg_id=177#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
178: UCNMSTRT must have the same number of characters as LCNMSTRT feedback.html?errmsg_id=178#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
179: UCNMCHAR must have the same number of characters as LCNMCHAR feedback.html?errmsg_id=179#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
180: number of open subdocuments exceeds quantity specified for SUBDOC parameter in SGML declaration (X) feedback.html?errmsg_id=180#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
181: entity X declared SUBDOC, but SUBDOC NO specified in SGML declaration feedback.html?errmsg_id=181#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
182: a parameter entity referenced in a parameter separator must end in the same declaration feedback.html?errmsg_id=182#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
184: generic identifier X used in DTD but not defined feedback.html?errmsg_id=184#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
185: X not finished but document ended feedback.html?errmsg_id=185#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
186: cannot continue with subdocument because of previous errors feedback.html?errmsg_id=186#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
188: no internal or external document type declaration subset; will parse without validation feedback.html?errmsg_id=188#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
189: this is not an SGML document feedback.html?errmsg_id=189#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
190: length of start-tag before interpretation of literals must not exceed TAGLEN (X) feedback.html?errmsg_id=190#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
191: a parameter entity referenced in a token separator must end in the same group feedback.html?errmsg_id=191#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
192: the following character numbers are shunned characters that are not significant and so should have been declared UNUSED: X feedback.html?errmsg_id=192#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
193: there is no unique character in the specified document character set corresponding to character number X in ISO 646 feedback.html?errmsg_id=193#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
194: length of attribute value must not exceed LITLEN less NORMSEP (-X) feedback.html?errmsg_id=194#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
195: length of tokenized attribute value must not exceed LITLEN less NORMSEP (-X) feedback.html?errmsg_id=195#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
196: concrete syntax scope is INSTANCE but value of X quantity is less than value in reference quantity set feedback.html?errmsg_id=196#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
197: public text class of formal public identifier of base character set must be CHARSET feedback.html?errmsg_id=197#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
198: public text class of formal public identifier of capacity set must be CAPACITY feedback.html?errmsg_id=198#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
199: public text class of formal public identifier of concrete syntax must be SYNTAX feedback.html?errmsg_id=199#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
200: when there is an MSOCHAR there must also be an MSICHAR feedback.html?errmsg_id=200#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
201: character number X in the syntax reference character set was specified as a character to be switched but is not a markup character feedback.html?errmsg_id=201#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
202: character number X was specified as a character to be switched but is not in the syntax reference character set feedback.html?errmsg_id=202#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
203: character numbers X in the document character set have been assigned the same meaning, but this is the meaning of a significant character feedback.html?errmsg_id=203#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
204: character number X assigned to more than one function feedback.html?errmsg_id=204#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
205: X is already a function name feedback.html?errmsg_id=205#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
206: characters with the following numbers in ISO 646 are significant in the concrete syntax but are not in the document character set: X feedback.html?errmsg_id=206#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
207: general delimiter X consists solely of function characters feedback.html?errmsg_id=207#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
208: letters assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT: X feedback.html?errmsg_id=208#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
209: digits assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT: X feedback.html?errmsg_id=209#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
210: character number X cannot be assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT because it is RE feedback.html?errmsg_id=210#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
211: character number X cannot be assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT because it is RS feedback.html?errmsg_id=211#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
212: character number X cannot be assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT because it is SPACE feedback.html?errmsg_id=212#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
213: separator characters assigned to LCNMCHAR, UCNMCHAR, LCNMSTRT or UCNMSTRT: X feedback.html?errmsg_id=213#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
214: character number X cannot be switched because it is a Digit, LC Letter or UC Letter feedback.html?errmsg_id=214#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
215: pointless for number of characters to be 0 feedback.html?errmsg_id=215#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
216: X cannot be the replacement for a reference reserved name because it is another reference reserved name feedback.html?errmsg_id=216#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
217: X cannot be the replacement for a reference reserved name because it is the replacement of another reference reserved name feedback.html?errmsg_id=217#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
218: replacement for reserved name X already specified feedback.html?errmsg_id=218#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
219: X is not a valid name in the declared concrete syntax feedback.html?errmsg_id=219#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
220: X is not a valid short reference delimiter because it has more than one B sequence feedback.html?errmsg_id=220#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
221: X is not a valid short reference delimiter because it is adjacent to a character that can occur in a blank sequence feedback.html?errmsg_id=221#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
222: length of delimiter X exceeds NAMELEN (Y) feedback.html?errmsg_id=222#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
223: length of reserved name X exceeds NAMELEN (Y) feedback.html?errmsg_id=223#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
224: character numbers assigned to both LCNMCHAR or UCNMCHAR and LCNMSTRT or UCNMSTRT: X feedback.html?errmsg_id=224#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
225: when the concrete syntax scope is INSTANCE the syntax reference character set of the declared syntax must be the same as that of the reference concrete syntax feedback.html?errmsg_id=225#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
226: end-tag minimization should be O for element with declared content of EMPTY feedback.html?errmsg_id=226#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
227: end-tag minimization should be O for element X because it has CONREF attribute feedback.html?errmsg_id=227#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
228: element X has a declared content of EMPTY and a CONREF attribute feedback.html?errmsg_id=228#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
229: element X has a declared content of EMPTY and a NOTATION attribute feedback.html?errmsg_id=229#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
230: declared value of data attribute cannot be ENTITY, ENTITIES, ID, IDREF, IDREFS or NOTATION feedback.html?errmsg_id=230#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
231: default value of data attribute cannot be CONREF or CURRENT feedback.html?errmsg_id=231#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
232: number of attribute names and name tokens (X) exceeds ATTCNT (Y) feedback.html?errmsg_id=232#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
233: if the declared value is ID the default value must be IMPLIED or REQUIRED feedback.html?errmsg_id=233#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
234: the attribute definition list already declared attribute X as the ID attribute feedback.html?errmsg_id=234#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
235: the attribute definition list already declared attribute X as the NOTATION attribute feedback.html?errmsg_id=235#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
236: token X occurs more than once in attribute definition list feedback.html?errmsg_id=236#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
237: no attributes defined for notation X feedback.html?errmsg_id=237#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
238: notation X for entity Y undefined feedback.html?errmsg_id=238#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
239: entity X undefined in short reference map Y feedback.html?errmsg_id=239#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
240: notation X is undefined but had attribute definition feedback.html?errmsg_id=240#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
241: length of interpreted parameter literal in bracketed text plus the length of the bracketing delimiters must not exceed LITLEN (X) feedback.html?errmsg_id=241#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
242: length of rank stem plus length of rank suffix must not exceed NAMELEN (X) feedback.html?errmsg_id=242#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
243: document instance must start with document element feedback.html?errmsg_id=243#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
244: content model nesting level exceeds GRPLVL (X) feedback.html?errmsg_id=244#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
245: grand total of content tokens exceeds GRPGTCNT (X) feedback.html?errmsg_id=245#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
249: DTDs other than base allowed only if CONCUR YES or EXPLICIT YES feedback.html?errmsg_id=249#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
250: end of entity other than document entity after document element feedback.html?errmsg_id=250#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
251: X declaration illegal after document element feedback.html?errmsg_id=251#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
252: character reference illegal after document element feedback.html?errmsg_id=252#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
253: entity reference illegal after document element feedback.html?errmsg_id=253#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
254: marked section illegal after document element feedback.html?errmsg_id=254#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
255: the X occurrence of Y in the content model for Z cannot be excluded at this point because it is contextually required feedback.html?errmsg_id=255#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
256: the X occurrence of Y in the content model for Z cannot be excluded because it is neither inherently optional nor a member of an OR group feedback.html?errmsg_id=256#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
257: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified feedback.html?errmsg_id=257#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
258: value cannot be specified both for notation attribute and content reference attribute feedback.html?errmsg_id=258#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
259: notation X already defined feedback.html?errmsg_id=259#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
260: short reference map X already defined feedback.html?errmsg_id=260#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
261: first defined here feedback.html?errmsg_id=261#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
262: general delimiter role X already defined feedback.html?errmsg_id=262#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
263: number of ID references in start-tag must not exceed GRPCNT (X) feedback.html?errmsg_id=263#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
264: number of entity names in attribute specification list must not exceed GRPCNT (X) feedback.html?errmsg_id=264#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
265: normalized length of attribute specification list must not exceed ATTSPLEN (X); length was Y feedback.html?errmsg_id=265#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
266: short reference delimiter X already specified feedback.html?errmsg_id=266#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
267: single character short references were already specified for character numbers: X feedback.html?errmsg_id=267#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
268: default entity used in entity attribute X feedback.html?errmsg_id=268#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
269: reference to entity X uses default entity feedback.html?errmsg_id=269#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
270: entity X in short reference map Y uses default entity feedback.html?errmsg_id=270#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
271: no DTD X declared feedback.html?errmsg_id=271#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
272: LPD X has neither internal nor external subset feedback.html?errmsg_id=272#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
273: element types have different link attribute definitions feedback.html?errmsg_id=273#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
274: link set X already defined feedback.html?errmsg_id=274#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
275: empty result attribute specification feedback.html?errmsg_id=275#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
276: no source element type X feedback.html?errmsg_id=276#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
277: no result element type X feedback.html?errmsg_id=277#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
278: end of document in LPD subset feedback.html?errmsg_id=278#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
279: X declaration not allowed in LPD subset feedback.html?errmsg_id=279#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
280: ID link set declaration not allowed in simple link declaration subset feedback.html?errmsg_id=280#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
281: link set declaration not allowed in simple link declaration subset feedback.html?errmsg_id=281#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
282: attributes can only be defined for base document element (not X) in simple link declaration subset feedback.html?errmsg_id=282#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
283: a short reference mapping declaration is allowed only in the base DTD feedback.html?errmsg_id=283#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
284: a short reference use declaration is allowed only in the base DTD feedback.html?errmsg_id=284#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
285: default value of link attribute cannot be CURRENT or CONREF feedback.html?errmsg_id=285#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
286: declared value of link attribute cannot be ID, IDREF, IDREFS or NOTATION feedback.html?errmsg_id=286#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
287: only fixed attributes can be defined in simple LPD feedback.html?errmsg_id=287#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
288: only one ID link set declaration allowed in an LPD subset feedback.html?errmsg_id=288#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
289: no initial link set defined for LPD X feedback.html?errmsg_id=289#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
290: notation X not defined in source DTD feedback.html?errmsg_id=290#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
291: result document type in simple link specification must be implied feedback.html?errmsg_id=291#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
292: simple link requires SIMPLE YES feedback.html?errmsg_id=292#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
293: implicit link requires IMPLICIT YES feedback.html?errmsg_id=293#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
294: explicit link requires EXPLICIT YES feedback.html?errmsg_id=294#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
295: LPD not allowed before first DTD feedback.html?errmsg_id=295#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
296: DTD not allowed after an LPD feedback.html?errmsg_id=296#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
297: definition of general entity X is unstable feedback.html?errmsg_id=297#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
298: definition of parameter entity X is unstable feedback.html?errmsg_id=298#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
299: multiple link rules for ID X but not all have link attribute specifications feedback.html?errmsg_id=299#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
300: multiple link rules for element type X but not all have link attribute specifications feedback.html?errmsg_id=300#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
301: link type X does not have a link set Y feedback.html?errmsg_id=301#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
302: link set use declaration for simple link process feedback.html?errmsg_id=302#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
303: no link type X feedback.html?errmsg_id=303#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
304: both document type and link type X feedback.html?errmsg_id=304#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
305: link type X already defined feedback.html?errmsg_id=305#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
306: document type X already defined feedback.html?errmsg_id=306#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
307: link set X used in LPD but not defined feedback.html?errmsg_id=307#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
308: #IMPLIED already linked to result element type X feedback.html?errmsg_id=308#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
309: number of active simple link processes exceeds quantity specified for SIMPLE parameter in SGML declaration (X) feedback.html?errmsg_id=309#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
310: only one chain of explicit link processes can be active feedback.html?errmsg_id=310#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
311: source document type name for link type X must be base document type since EXPLICIT YES 1 feedback.html?errmsg_id=311#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
312: only one implicit link process can be active feedback.html?errmsg_id=312#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
313: sorry, link type X not activated: only one implicit or explicit link process can be active (with base document type as source document type) feedback.html?errmsg_id=313#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
314: name missing after name group in entity reference feedback.html?errmsg_id=314#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
315: source document type name for link type X must be base document type since EXPLICIT NO feedback.html?errmsg_id=315#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
316: link process must be activated before base DTD feedback.html?errmsg_id=316#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
317: unexpected entity end while starting second pass feedback.html?errmsg_id=317#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
318: type X of element with ID Y not associated element type for applicable link rule in ID link set feedback.html?errmsg_id=318#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
319: DATATAG feature not implemented feedback.html?errmsg_id=319#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
320: generic identifier specification missing after document type specification in start-tag feedback.html?errmsg_id=320#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
321: generic identifier specification missing after document type specification in end-tag feedback.html?errmsg_id=321#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
322: a NET-enabling start-tag cannot include a document type specification feedback.html?errmsg_id=322#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
324: invalid default SGML declaration feedback.html?errmsg_id=324#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
326: entity was defined here feedback.html?errmsg_id=326#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
327: content model is mixed but does not allow #PCDATA everywhere feedback.html?errmsg_id=327#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
328: start or end of range must specify a single character feedback.html?errmsg_id=328#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
329: number of first character in range must not exceed number of second character in range feedback.html?errmsg_id=329#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
330: delimiter cannot be an empty string feedback.html?errmsg_id=330#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
331: too many characters assigned same meaning with minimum literal feedback.html?errmsg_id=331#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
332: earlier reference to entity X used default entity feedback.html?errmsg_id=332#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
335: unused short reference map X feedback.html?errmsg_id=335#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
336: unused parameter entity X feedback.html?errmsg_id=336#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
337: cannot generate system identifier for public text X feedback.html?errmsg_id=337#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
339: cannot generate system identifier for parameter entity X feedback.html?errmsg_id=339#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
340: cannot generate system identifier for document type X feedback.html?errmsg_id=340#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
341: cannot generate system identifier for link type X feedback.html?errmsg_id=341#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
342: cannot generate system identifier for notation X feedback.html?errmsg_id=342#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
343: element type X both included and excluded feedback.html?errmsg_id=343#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
345: minimum data of AFDR declaration must be ""ISO/IEC 10744:1997"" not X feedback.html?errmsg_id=345#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
346: AFDR declaration required before use of AFDR extensions feedback.html?errmsg_id=346#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
347: ENR extensions were used but minimum literal was not ""ISO 8879:1986 (ENR)"" or ""ISO 8879:1986 (WWW)"" feedback.html?errmsg_id=347#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
348: illegal numeric character reference to non-SGML character X in literal feedback.html?errmsg_id=348#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
349: cannot convert character reference to number X because description Y unrecognized feedback.html?errmsg_id=349#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
350: cannot convert character reference to number X because character Y from baseset Z unknown feedback.html?errmsg_id=350#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
351: character reference to number X cannot be converted because of problem with internal character set feedback.html?errmsg_id=351#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
352: cannot convert character reference to number X because character not in internal character set feedback.html?errmsg_id=352#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
353: Web SGML adaptations were used but minimum literal was not ""ISO 8879:1986 (WWW)"" feedback.html?errmsg_id=353#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
354: token X can be value for multiple attributes so attribute name required feedback.html?errmsg_id=354#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
355: length of hex number must not exceed NAMELEN (X) feedback.html?errmsg_id=355#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
356: X is not a valid name in the declared concrete syntax feedback.html?errmsg_id=356#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
357: CDATA declared content feedback.html?errmsg_id=357#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
358: RCDATA declared content feedback.html?errmsg_id=358#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
359: inclusion feedback.html?errmsg_id=359#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
360: exclusion feedback.html?errmsg_id=360#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
361: NUMBER or NUMBERS declared value feedback.html?errmsg_id=361#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
362: NAME or NAMES declared value feedback.html?errmsg_id=362#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
363: NUTOKEN or NUTOKENS declared value feedback.html?errmsg_id=363#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
364: CONREF attribute feedback.html?errmsg_id=364#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
365: CURRENT attribute feedback.html?errmsg_id=365#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
366: TEMP marked section feedback.html?errmsg_id=366#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
367: included marked section in the instance feedback.html?errmsg_id=367#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
368: ignored marked section in the instance feedback.html?errmsg_id=368#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
369: RCDATA marked section feedback.html?errmsg_id=369#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
370: processing instruction entity feedback.html?errmsg_id=370#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
371: bracketed text entity feedback.html?errmsg_id=371#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
372: internal CDATA entity feedback.html?errmsg_id=372#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
373: internal SDATA entity feedback.html?errmsg_id=373#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
374: external CDATA entity feedback.html?errmsg_id=374#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
375: external SDATA entity feedback.html?errmsg_id=375#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
376: attribute definition list declaration for notation feedback.html?errmsg_id=376#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
377: rank stem feedback.html?errmsg_id=377#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
379: comment in parameter separator feedback.html?errmsg_id=379#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
380: named character reference feedback.html?errmsg_id=380#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
381: AND group feedback.html?errmsg_id=381#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
382: attribute value not a literal feedback.html?errmsg_id=382#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
383: attribute name missing feedback.html?errmsg_id=383#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
384: element declaration for group of element types feedback.html?errmsg_id=384#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
385: attribute definition list declaration for group of element types feedback.html?errmsg_id=385#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
386: empty comment declaration feedback.html?errmsg_id=386#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
388: multiple comments in comment declaration feedback.html?errmsg_id=388#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
389: no status keyword feedback.html?errmsg_id=389#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
390: multiple status keywords feedback.html?errmsg_id=390#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
391: parameter entity reference in document instance feedback.html?errmsg_id=391#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
392: CURRENT attribute feedback.html?errmsg_id=392#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
393: element type minimization parameter feedback.html?errmsg_id=393#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
395: #PCDATA not first in model group feedback.html?errmsg_id=395#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
396: #PCDATA in SEQ group feedback.html?errmsg_id=396#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
397: #PCDATA in nested model group feedback.html?errmsg_id=397#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
398: #PCDATA in model group that does not have REP occurrence indicator feedback.html?errmsg_id=398#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
399: name group or name token group used connector other than OR feedback.html?errmsg_id=399#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
400: processing instruction does not start with name feedback.html?errmsg_id=400#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
401: S separator in status keyword specification in document instance feedback.html?errmsg_id=401#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
402: reference to external data entity feedback.html?errmsg_id=402#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
405: SGML declaration was not implied feedback.html?errmsg_id=405#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
406: marked section in internal DTD subset feedback.html?errmsg_id=406#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
408: entity end in different element from entity reference feedback.html?errmsg_id=408#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
409: NETENABL IMMEDNET requires EMPTYNRM YES feedback.html?errmsg_id=409#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
411: declaration of default entity feedback.html?errmsg_id=411#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
412: reference to parameter entity in parameter separator in internal subset feedback.html?errmsg_id=412#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
413: reference to parameter entity in token separator in internal subset feedback.html?errmsg_id=413#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
414: reference to parameter entity in parameter literal in internal subset feedback.html?errmsg_id=414#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
415: cannot generate system identifier for SGML declaration reference feedback.html?errmsg_id=415#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
416: public text class of formal public identifier of SGML declaration must be SD feedback.html?errmsg_id=416#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
417: SGML declaration reference was used but minimum literal was not ""ISO 8879:1986 (WWW)"" feedback.html?errmsg_id=417#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
418: member of model group containing #PCDATA has occurrence indicator feedback.html?errmsg_id=418#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
419: member of model group containing #PCDATA is a model group feedback.html?errmsg_id=419#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
420: reference to non-predefined entity feedback.html?errmsg_id=420#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
421: reference to external entity feedback.html?errmsg_id=421#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
422: declaration of default entity conflicts with IMPLYDEF ENTITY YES feedback.html?errmsg_id=422#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
423: parsing with respect to more than one active doctype not supported feedback.html?errmsg_id=423#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
424: cannot have active doctypes and link types at the same time feedback.html?errmsg_id=424#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
425: number of concurrent document instances exceeds quantity specified for CONCUR parameter in SGML declaration (X) feedback.html?errmsg_id=425#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
426: datatag group can only be specified in base document type feedback.html?errmsg_id=426#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
427: element not in the base document type can't have an empty start-tag feedback.html?errmsg_id=427#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
428: element not in base document type can't have an empty end-tag feedback.html?errmsg_id=428#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
429: immediately recursive element feedback.html?errmsg_id=429#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
430: invalid URN X: missing "":"" feedback.html?errmsg_id=430#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
431: invalid URN X: missing ""urn:"" prefix feedback.html?errmsg_id=431#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
432: invalid URN X: invalid namespace identifier feedback.html?errmsg_id=432#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
433: invalid URN X: invalid namespace specific string feedback.html?errmsg_id=433#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
434: invalid URN X: extra field feedback.html?errmsg_id=434#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
435: prolog can't be omitted unless CONCUR NO and LINK EXPLICIT NO and either IMPLYDEF ELEMENT YES or IMPLYDEF DOCTYPE YES feedback.html?errmsg_id=435#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
436: can't determine name of #IMPLIED document element feedback.html?errmsg_id=436#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
437: can't use #IMPLICIT doctype unless CONCUR NO and LINK EXPLICIT NO feedback.html?errmsg_id=437#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
438: Sorry, #IMPLIED doctypes not implemented feedback.html?errmsg_id=438#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
439: reference to DTD data entity ignored feedback.html?errmsg_id=439#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
440: notation X for parameter entity Y undefined feedback.html?errmsg_id=440#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
441: notation X for external subset undefined feedback.html?errmsg_id=441#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
442: attribute X can't be redeclared feedback.html?errmsg_id=442#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
443: #IMPLICIT attributes have already been specified for notation X feedback.html?errmsg_id=443#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
444: a name group is not allowed in a parameter entity reference in a start tag feedback.html?errmsg_id=444#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
445: name group in a parameter entity reference in an end tag (SGML forbids them in start tags) feedback.html?errmsg_id=445#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
446: if the declared value is NOTATION a default value of CONREF is useless feedback.html?errmsg_id=446#errormsg" title="Suggest improvements on this error message through our feedback channels">✉
447: Sorry, #ALL and #IMPLICIT content tokens not implemented feedback.html?errmsg_id=447#errormsg" title="Suggest improvements on this error message through our feedback channels">✉