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

Diff for /mandoc/html.h between version 1.28 and 1.36

version 1.28, 2010/12/15 14:52:16 version 1.36, 2010/12/24 14:14:00
Line 43  enum htmltag {
Line 43  enum htmltag {
         TAG_DL,          TAG_DL,
         TAG_DT,          TAG_DT,
         TAG_DD,          TAG_DD,
           TAG_BLOCKQUOTE,
           TAG_P,
           TAG_PRE,
           TAG_B,
           TAG_I,
           TAG_CODE,
           TAG_SMALL,
         TAG_MAX          TAG_MAX
 };  };
   
Line 57  enum htmlattr {
Line 64  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 117  struct html {
Line 123  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 127  struct roffsu;
Line 133  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.28  
changed lines
  Added in v.1.36

CVSweb