i just wanted to know if this is correct.
i only want to emulate simple HTML-Links so that my XHTML document
viewed by an full-style and xlink enabled XML Browser which does NOT
support XHTML itself is able to render the page correct
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" [
<!ATTLIST html
xmlns:xlink CDATA #FIXED 'http://www.w3.org/1999/xlink' >
<!ATTLIST a
xlink:type (simple) #FIXED 'simple'
xlink:href CDATA #REQUIRED >
]>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:xlink="http://www.w3.org/1999/xlink">
so in every <a> would be possible
<a href="bla" xlink:type="simple" xlink:href="bla">bla</bla>
so, is it an allowed method to extend the DTD in this way?
greetz, Warhog
|