should attribute values be limited by \" or \'?

Hello!

In HTML 4, is it correct to use both \' or \" to delimit attribute values? 

As I looked in the specification, it doesn't seem so, for instance we have in the img specification:

<!ELEMENT IMG - O EMPTY                -- Embedded image -->
<!ATTLIST IMG
  %attrs;                              -- %coreattrs, %i18n, %events --
  src         %URI;          #REQUIRED -- URI of image to embed --
...

<!ENTITY % URI "CDATA"
    -- a Uniform Resource Identifier,
       see [URI]


so it seems that 

<img src= "someimage.gif" >

is correct but

<img src= 'someimage.gif' >

isn't.

All examples I found in the tutorials have \" , however the W3C validator and Tidy consider that \' is correct.

Am I doing a dumm interpretation of the HTML specification? Could you please help me.

Thanks...

/Daniel Gomes
Grupo xldb-LaSIGE

Received on Friday, 29 June 2001 12:47:02 UTC