Re: XML declaration

Maria Grazia Lucci wrote:

> Help! What should I do?

Remove the empty lines before the XML declaration  <?xml ...?>

>    Line 6, Column 5: XML Parsing Error: XML declaration allowed only
> at the start of the document.

Yes, by XML rules, nothing (not even spaces or line breaks) are allowed 
before the XML declaration. From the XML specification:

      [1]    document    ::=    prolog element Misc*

      [22]    prolog    ::=    XMLDecl? Misc* (doctypedecl Misc*)?
      [23]    XMLDecl    ::=    '<?xml' VersionInfo EncodingDecl? 
SDDecl? S? '?>'


(Strangely enough, the WDG validator passes your document.)

> <? Xml version = "1.0" encoding = "iso-8859-2?">

As a quite separate issue, and not directly related to validation, why 
are you using iso-8859-2 in a document in Italian? Using iso-8859-1 
instead, you could enter accented letters like "à" as such and would not 
need to use entity references like "&agrave;".

Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/ 

Received on Wednesday, 23 January 2008 20:39:47 UTC