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

Diff for /mandoc/html.h between version 1.82 and 1.86

version 1.82, 2017/02/05 19:29:19 version 1.86, 2017/06/23 02:32:12
Line 41  enum htmltag {
Line 41  enum htmltag {
         TAG_DT,          TAG_DT,
         TAG_DD,          TAG_DD,
         TAG_PRE,          TAG_PRE,
           TAG_VAR,
         TAG_CITE,          TAG_CITE,
         TAG_B,          TAG_B,
         TAG_I,          TAG_I,
Line 50  enum htmltag {
Line 51  enum htmltag {
         TAG_MATH,          TAG_MATH,
         TAG_MROW,          TAG_MROW,
         TAG_MI,          TAG_MI,
           TAG_MN,
         TAG_MO,          TAG_MO,
         TAG_MSUP,          TAG_MSUP,
         TAG_MSUB,          TAG_MSUB,
Line 111  struct html {
Line 113  struct html {
 };  };
   
   
   struct  roff_node;
 struct  tbl_span;  struct  tbl_span;
 struct  eqn;  struct  eqn;
   
   void              roff_html_pre(struct html *, const struct roff_node *);
   
 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_otag(struct html *, enum htmltag, const char *, ...);  struct tag       *print_otag(struct html *, enum htmltag, const char *, ...);
Line 126  void    print_eqn(struct html *, const struct eqn *);
Line 131  void    print_eqn(struct html *, const struct eqn *);
 void              print_paragraph(struct html *);  void              print_paragraph(struct html *);
 void              print_endline(struct html *);  void              print_endline(struct html *);
   
   char             *html_make_id(const struct roff_node *);
 int               html_strlen(const char *);  int               html_strlen(const char *);

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.86

CVSweb