- From: Dave Hodder <dmh@dmh.org.uk>
- Date: Fri, 15 Mar 2002 22:31:05 +0000
- To: www-html@w3.org
On Thu, Mar 14, 2002 at 05:59:58PM -0500, Etan Wexler wrote:
>
> Another option is to create a specialized document type definition.
> This maintains the formal validity of the document and leaves
> the document as something that is recognizably and usably HTML.
> Problem solved, I would think.
How about something like this?
Dave ;o)
<!-- ............................................................... -->
<!-- XHTML 1.1 plus Target 1.0 DTD ................................ -->
<!-- File: xhtml11-target.dtd
This is a driver file for XHTML 1.1 with the addition of the
'target' attribute (taken from the XHTML Target 1.0 module). It
is identified by the public and system identifiers:
PUBLIC "-//dmh.org.uk//DTD XHTML 1.1 plus Target 1.0//EN"
SYSTEM "http://www.dmh.org.uk/dtd/xhtml/xhtml11-target.dtd"
The system identifier may be modified appropriately, e.g. to a
location on your local machine.
A suitable DOCTYPE declaration would be:
<!DOCTYPE html
PUBLIC "-//dmh.org.uk//DTD XHTML 1.1 plus Target 1.0//EN"
"http://www.dmh.org.uk/dtd/xhtml/xhtml11-target.dtd">
Author: Dave H <dmh@dmh.org.uk>
-->
<!ENTITY % XHTML.version
"-//dmh.org.uk//DTD XHTML 1.1 plus Target 1.0//EN" >
<!ENTITY % xhtml11.mod
PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" >
%xhtml11.mod;
<!ENTITY % xhtml-target.mod
PUBLIC "-//W3C//ELEMENTS XHTML Target 1.0//EN"
"http://www.w3.org/TR/xhtml-modularization/DTD/xhtml-target-1.mod" >
%xhtml-target.mod;
<!-- End of XHTML 1.1 plus Target 1.0 DTD ......................... -->
<!-- ............................................................... -->
Received on Friday, 15 March 2002 17:29:07 UTC