Diff for /Amaya/amaya/HTMLT.T between versions 1.108 and 1.109

version 1.108, 2000/08/19 17:10:00 version 1.109, 2000/08/28 18:17:13
Line 482  RULES Line 482  RULES
         END;          END;
   
  Math: BEGIN   Math: BEGIN
 #ifdef XML  
         Create '<math xmlns="http://www.w3.org/1998/Math/MathML"';  
 #else  
         Create '<math';  
 #endif  
         Create Attributes;  
         Create '>\12';  
         indent +2;  
         indent -2 after;  
         Create '</math>\12' After;  
         END;          END;
   
  XMLGraphics: BEGIN   XMLGraphics: BEGIN
 #ifdef XML  
         Create '<svg xmlns="http://www.w3.org/2000/svg"';  
 #else  
         Create '<svg';  
 #endif  
         Create Attributes;  
         Create '>\12';  
         indent +2;  
         indent -2 after;  
         Create '</svg>\12' After;  
         END;          END;
   
  Paragraph: BEGIN   Paragraph: BEGIN
Line 1853  ATTRIBUTES Line 1833  ATTRIBUTES
         Create DoubleQuote;          Create DoubleQuote;
         END;          END;
   
  mode = inline_math:  
         Create ' mode="inline"';  
  mode = display:  
         Create ' mode="display"';  
   
  SvgHeight: BEGIN  
         Create ' height="';  
         Create SvgHeight;  
         Create DoubleQuote;  
         END;  
   
  SvgWidth: BEGIN  
         Create ' width="';  
         Create SvgWidth;  
         Create DoubleQuote;  
         END;  
   
  summary: BEGIN   summary: BEGIN
         Create ' summary="';          Create ' summary="';
         Create Translated summary;          Create Translated summary;

Removed from v.1.108  
changed lines
  Added in v.1.109


Webmaster