Diff for /libwww/Library/src/HTML.html between versions 2.20 and 2.20.2.2

version 2.20, 1994/11/24 21:11:15 version 2.20.2.2, 1995/03/09 18:24:32
Line 26  Library of Common Code</A>. Line 26  Library of Common Code</A>.
 #ifndef HTML_H  #ifndef HTML_H
 #define HTML_H  #define HTML_H
   
 #include "HTUtils.h"  
 #include "HTFormat.h"  #include "HTFormat.h"
 #include "HTAnchor.h"  #include "HTAnchor.h"
 #include "HTMLPDTD.h"  #include "HTMLPDTD.h"
Line 113  exists else &lt; 0 Line 112  exists else &lt; 0
   
   
 </PRE>  </PRE>
 <h2>White Space Treatment</h2>  
 There is a small number of different ways of treating white  <H2>White Space Treatment</H2>
 space in SGML, in mapping from a text object to HTML.  
 These have to be programmed it seems.  There is a small number of different ways of treating white space in
 <pre>  SGML, in mapping from a text object to HTML.  These have to be
   programmed it seems.
   
   <PRE>
 /*  /*
 In text object  \n\n            \n      tab     \n\n\t  In text object  \n\n            \n      tab     \n\n\t
 --------------  -------------   -----   -----   -------  --------------  -------------   -----   -----   -------
 in Address,  in Address,
 Blockquote,  Blockquote,
 Normal,         <P>             <BR>    -               NORMAL  Normal,         &lt;P&gt;               &lt;BR&gt;      -               NORMAL
 H1-6:           close+open      <BR>    -               HEADING  H1-6:           close+open      &lt;BR&gt;      -               HEADING
 Glossary        <DT>            <DT>    <DD>    <P>     GLOSSARY  Glossary        &lt;DT&gt;              &lt;DT&gt;      &lt;DD&gt;      &lt;P&gt;       GLOSSARY
 List,                             List,                           
 Menu            <LI>            <LI>    -       <P>     LIST  Menu            &lt;LI&gt;              &lt;LI&gt;      -       &lt;P&gt;       LIST
 Dir             <LI>            <LI>    <LI>            DIR  Dir             &lt;LI&gt;              &lt;LI&gt;      &lt;LI&gt;              DIR
 Pre etc         \n\n            \n      \t              PRE  Pre etc         \n\n            \n      \t              PRE
   
 */  */
Line 143  typedef enum _white_space_treatment { Line 145  typedef enum _white_space_treatment {
 } white_space_treatment;  } white_space_treatment;
   
 </pre>  </pre>
   
 <h2>Nesting State</h2>  <h2>Nesting State</h2>
 These elements form tree with an item for each nesting state: that  These elements form tree with an item for each nesting state: that
 is, each unique combination of nested elements which has a  is, each unique combination of nested elements which has a

Removed from v.2.20  
changed lines
  Added in v.2.20.2.2


Webmaster