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

Diff for /mandoc/html.h between version 1.29 and 1.35

version 1.29, 2010/12/15 15:59:23 version 1.35, 2010/12/24 00:46:49
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_B,
           TAG_I,
           TAG_U,
           TAG_CODE,
           TAG_SMALL,
         TAG_MAX          TAG_MAX
 };  };
   
Line 58  enum htmlattr {
Line 65  enum htmlattr {
         ATTR_CLASS,          ATTR_CLASS,
         ATTR_STYLE,          ATTR_STYLE,
         ATTR_WIDTH,          ATTR_WIDTH,
         ATTR_VALIGN,  
         ATTR_TARGET,  
         ATTR_ID,          ATTR_ID,
         ATTR_SUMMARY,          ATTR_SUMMARY,
           ATTR_ALIGN,
         ATTR_MAX          ATTR_MAX
 };  };
   
Line 118  struct html {
Line 124  struct html {
         char             *style;          char             *style;
         char              buf[BUFSIZ];          char              buf[BUFSIZ];
         size_t            buflen;          size_t            buflen;
         struct tag       *metaf;          struct tag       *metaf; /* current open font scope */
         enum htmlfont     metal;          enum htmlfont     metal; /* last used font */
         enum htmlfont     metac;          enum htmlfont     metac; /* current font mode */
         enum htmltype     type;          enum htmltype     type;
 };  };
   
Line 128  struct roffsu;
Line 134  struct roffsu;
   
 void              print_gen_decls(struct html *);  void              print_gen_decls(struct html *);
 void              print_gen_head(struct html *);  void              print_gen_head(struct html *);
 struct tag       *print_ofont(struct html *, enum htmlfont);  
 struct tag       *print_otag(struct html *, enum htmltag,  struct tag       *print_otag(struct html *, enum htmltag,
                                 int, const struct htmlpair *);                                  int, const struct htmlpair *);
 void              print_tagq(struct html *, const struct tag *);  void              print_tagq(struct html *, const struct tag *);

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.35

CVSweb