view dtd/html-blocktext.mod @ 135:121e94b0b73f

Reply needs a para
author ht
date Sat, 16 Nov 2024 09:46:51 +0000
parents bca6df27dbfd
children
line wrap: on
line source

<!--
  This DTD defines miscellaneous block level elements for
  Voyager. Defines address, hr, pre, and blockquote elements

  Copyright (c) 1998 W3C (MIT, INRIA, Keio), All Rights Reserved. 

  Author: Dave Raggett  <dsr@w3.org>
-->

 <!--=================== Address ==========================================-->

 <!ELEMENT address %Inline;> <!-- information on author -->
 <!ATTLIST address
   %attrs;
   >

 <!--=================== Horizontal Rule ==================================-->

 <!ENTITY % hr.extra "">

 <!ELEMENT hr EMPTY>
 <!ATTLIST hr
   %coreattrs;
   %events;
   %hr.extra;
   >

 <!--=================== Preformatted Text ================================-->

 <!ENTITY % pre.extra "">

 <!ELEMENT pre %Inline;>
 <!ATTLIST pre
   %attrs;
   %pre.extra;
   xml:space (preserve) #FIXED "preserve" 
   >


 <!--=================== Block-like Quotes ================================-->

 <!ELEMENT blockquote %Block;>
 <!ATTLIST blockquote
   %attrs;
   cite        %URI;          #IMPLIED
   >