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

Diff for /mandoc/html.h between version 1.58 and 1.64

version 1.58, 2014/09/27 09:05:57 version 1.64, 2014/09/28 20:14:20
Line 44  enum htmltag {
Line 44  enum htmltag {
         TAG_DT,          TAG_DT,
         TAG_DD,          TAG_DD,
         TAG_BLOCKQUOTE,          TAG_BLOCKQUOTE,
         TAG_P,  
         TAG_PRE,          TAG_PRE,
         TAG_B,          TAG_B,
         TAG_I,          TAG_I,
         TAG_CODE,          TAG_CODE,
         TAG_SMALL,          TAG_SMALL,
         TAG_STYLE,          TAG_STYLE,
           TAG_MATH,
           TAG_MROW,
           TAG_MI,
           TAG_MO,
           TAG_MSUP,
           TAG_MSUB,
           TAG_MSUBSUP,
           TAG_MFRAC,
           TAG_MSQRT,
           TAG_MFENCED,
           TAG_MTABLE,
           TAG_MTR,
           TAG_MTD,
           TAG_MUNDEROVER,
           TAG_MUNDER,
           TAG_MOVER,
         TAG_MAX          TAG_MAX
 };  };
   
Line 62  enum htmlattr {
Line 77  enum htmlattr {
         ATTR_MEDIA,          ATTR_MEDIA,
         ATTR_CLASS,          ATTR_CLASS,
         ATTR_STYLE,          ATTR_STYLE,
         ATTR_WIDTH,  
         ATTR_ID,          ATTR_ID,
         ATTR_ALIGN,  
         ATTR_COLSPAN,          ATTR_COLSPAN,
         ATTR_CHARSET,          ATTR_CHARSET,
           ATTR_OPEN,
           ATTR_CLOSE,
         ATTR_MAX          ATTR_MAX
 };  };
   
Line 103  struct htmlpair {
Line 118  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 131  struct html {
Line 141  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 */
 };  };
Line 146  void    print_text(struct html *, const char *);
Line 155  void    print_text(struct html *, const char *);
 void              print_tblclose(struct html *);  void              print_tblclose(struct html *);
 void              print_tbl(struct html *, const struct tbl_span *);  void              print_tbl(struct html *, const struct tbl_span *);
 void              print_eqn(struct html *, const struct eqn *);  void              print_eqn(struct html *, const struct eqn *);
   void              print_paragraph(struct html *);
   
 #if __GNUC__ - 0 >= 4  #if __GNUC__ - 0 >= 4
 __attribute__((__format__ (__printf__, 2, 3)))  __attribute__((__format__ (__printf__, 2, 3)))

Legend:
Removed from v.1.58  
changed lines
  Added in v.1.64

CVSweb