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 < 0
|
Line 112 exists else < 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, <P> <BR> - NORMAL |
H1-6: close+open <BR> - HEADING |
H1-6: close+open <BR> - HEADING |
Glossary <DT> <DT> <DD> <P> GLOSSARY |
Glossary <DT> <DT> <DD> <P> GLOSSARY |
List, |
List, |
Menu <LI> <LI> - <P> LIST |
Menu <LI> <LI> - <P> LIST |
Dir <LI> <LI> <LI> DIR |
Dir <LI> <LI> <LI> 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 |