[BACK]Return to html.h CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/html.h between version 1.61 and 1.62

version 1.61, 2014/09/27 10:56:18 version 1.62, 2014/09/27 11:17:19
Line 100  struct htmlpair {
Line 100  struct htmlpair {
 #define PAIR_HREF_INIT(p, v)    PAIR_INIT(p, ATTR_HREF, v)  #define PAIR_HREF_INIT(p, v)    PAIR_INIT(p, ATTR_HREF, v)
 #define PAIR_STYLE_INIT(p, h)   PAIR_INIT(p, ATTR_STYLE, (h)->buf)  #define PAIR_STYLE_INIT(p, h)   PAIR_INIT(p, ATTR_STYLE, (h)->buf)
   
 enum    htmltype {  
         HTML_HTML_4_01_STRICT,  
         HTML_XHTML_1_0_STRICT  
 };  
   
 struct  html {  struct  html {
         int               flags;          int               flags;
 #define HTML_NOSPACE     (1 << 0) /* suppress next space */  #define HTML_NOSPACE     (1 << 0) /* suppress next space */
Line 128  struct html {
Line 123  struct html {
         struct tag       *metaf; /* current open font scope */          struct tag       *metaf; /* current open font scope */
         enum htmlfont     metal; /* last used font */          enum htmlfont     metal; /* last used font */
         enum htmlfont     metac; /* current font mode */          enum htmlfont     metac; /* current font mode */
         enum htmltype     type; /* output media type */  
         int               oflags; /* output options */          int               oflags; /* output options */
 #define HTML_FRAGMENT    (1 << 0) /* don't emit HTML/HEAD/BODY */  #define HTML_FRAGMENT    (1 << 0) /* don't emit HTML/HEAD/BODY */
 };  };

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62

CVSweb