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

Diff for /mandoc/html.h between version 1.69 and 1.73

version 1.69, 2014/12/01 08:05:52 version 1.73, 2016/07/19 13:36:13
Line 126  struct html {
Line 126  struct html {
 #define HTML_SKIPCHAR    (1 << 6) /* skip the next character */  #define HTML_SKIPCHAR    (1 << 6) /* skip the next character */
 #define HTML_NOSPLIT     (1 << 7) /* do not break line before .An */  #define HTML_NOSPLIT     (1 << 7) /* do not break line before .An */
 #define HTML_SPLIT       (1 << 8) /* break line before .An */  #define HTML_SPLIT       (1 << 8) /* break line before .An */
   #define HTML_NONEWLINE   (1 << 9) /* No line break in nofill mode. */
         struct tagq       tags; /* stack of open tags */          struct tagq       tags; /* stack of open tags */
         struct rofftbl    tbl; /* current table */          struct rofftbl    tbl; /* current table */
         struct tag       *tblt; /* current open table scope */          struct tag       *tblt; /* current open table scope */
         const struct mchars *symtab; /* character table */  
         char             *base_man; /* base for manpage href */          char             *base_man; /* base for manpage href */
         char             *base_includes; /* base for include href */          char             *base_includes; /* base for include href */
         char             *style; /* style-sheet URI */          char             *style; /* style-sheet URI */
Line 142  struct html {
Line 142  struct html {
 #define HTML_FRAGMENT    (1 << 0) /* don't emit HTML/HEAD/BODY */  #define HTML_FRAGMENT    (1 << 0) /* don't emit HTML/HEAD/BODY */
 };  };
   
 __BEGIN_DECLS  
   
 struct  tbl_span;  struct  tbl_span;
 struct  eqn;  struct  eqn;
Line 159  void    print_tbl(struct html *, const struct tbl_span
Line 158  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 *);  void              print_paragraph(struct html *);
   
 #if __GNUC__ - 0 >= 4  void              bufcat_fmt(struct html *, const char *, ...)
 __attribute__((__format__ (__printf__, 2, 3)))                          __attribute__((__format__ (printf, 2, 3)));
 #endif  
 void              bufcat_fmt(struct html *, const char *, ...);  
 void              bufcat(struct html *, const char *);  void              bufcat(struct html *, const char *);
 void              bufcat_id(struct html *, const char *);  void              bufcat_id(struct html *, const char *);
 void              bufcat_style(struct html *,  void              bufcat_style(struct html *,
Line 175  void    buffmt_man(struct html *,
Line 172  void    buffmt_man(struct html *,
 void              buffmt_includes(struct html *, const char *);  void              buffmt_includes(struct html *, const char *);
   
 int               html_strlen(const char *);  int               html_strlen(const char *);
   
 __END_DECLS  

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.73

CVSweb