Diff for /Amaya/amaya/HTMLT.T between versions 1.47 and 1.48

version 1.47, 1998/07/03 16:16:58 version 1.48, 1998/07/06 09:22:43
Line 284  RULES Line 284  RULES
         Create '>';          Create '>';
         Create '</cite>' After;          Create '</cite>' After;
         END;          END;
    ABBR:
           BEGIN
           Create '<abbr';
           Create Attributes;
           Create '>';
           Create '</abbr>' After;
           END;
    ACRONYM:
           BEGIN
           Create '<acronym';
           Create Attributes;
           Create '>';
           Create '</acronym>' After;
           END;
   
  Font_: BEGIN   Font_: BEGIN
         Create '<font';          Create '<font';
Line 320  RULES Line 334  RULES
         Create '</span>' After;          Create '</span>' After;
         END;          END;
   
    Quotation: BEGIN
           Create '<q';
           Create Attributes;
           Create '>';
           Create '</q>' After;
           END;
   
    BDO: BEGIN
           Create '<bdo';
           Create Attributes;
           Create '>';
           Create '</bdo>' After;
           END;
   
    IFRAME: BEGIN
           Create '<iframe';
           Create Attributes;
           Create '>\12';
           Create '</iframe>\12' After;    
           END;
   
 #ifdef MATHML  #ifdef MATHML
  Math: BEGIN   Math: BEGIN
         Create '<math';          Create '<math';
Line 788  ATTRIBUTES Line 823  ATTRIBUTES
         Create DoubleQuote;          Create DoubleQuote;
         END;          END;
   
    BaseFontColor:
           BEGIN
           Create ' color="';
           Create BaseFontColor;
           Create DoubleQuote;
           END;
   
    BaseFontFace:
           BEGIN
           Create ' facee="';
           Create BaseFontFace;
           Create DoubleQuote;
           END;
   
  Font_size :   Font_size :
         BEGIN          BEGIN
         Create ' size="';          Create ' size="';
Line 802  ATTRIBUTES Line 851  ATTRIBUTES
         Create DoubleQuote;          Create DoubleQuote;
         END;          END;
   
    face :
           BEGIN
           Create ' face="';
           Create face;
           Create DoubleQuote;
           END;
   
  Clear = Left_:   Clear = Left_:
         Create ' clear="left"';          Create ' clear="left"';
  Clear = Right_:   Clear = Right_:

Removed from v.1.47  
changed lines
  Added in v.1.48


Webmaster