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

Diff for /mandoc/html.h between version 1.100 and 1.103

version 1.100, 2019/01/07 07:26:29 version 1.103, 2019/04/30 15:53:00
Line 24  enum htmltag {
Line 24  enum htmltag {
         TAG_TITLE,          TAG_TITLE,
         TAG_DIV,          TAG_DIV,
         TAG_IDIV,          TAG_IDIV,
           TAG_SECTION,
         TAG_H1,          TAG_H1,
         TAG_H2,          TAG_H2,
         TAG_SPAN,          TAG_SPAN,
Line 68  enum htmltag {
Line 69  enum htmltag {
         TAG_MAX          TAG_MAX
 };  };
   
 enum    htmlfont {  
         HTMLFONT_NONE = 0,  
         HTMLFONT_BOLD,  
         HTMLFONT_ITALIC,  
         HTMLFONT_BI,  
         HTMLFONT_CW,  
         HTMLFONT_MAX  
 };  
   
 struct  tag {  struct  tag {
         struct tag       *next;          struct tag       *next;
           int               refcnt;
           int               closed;
         enum htmltag      tag;          enum htmltag      tag;
 };  };
   
Line 108  struct html {
Line 102  struct html {
         char             *base_includes; /* base for include href */          char             *base_includes; /* base for include href */
         char             *style; /* style-sheet URI */          char             *style; /* style-sheet URI */
         struct tag       *metaf; /* current open font scope */          struct tag       *metaf; /* current open font scope */
         enum htmlfont     metal; /* last used font */          enum mandoc_esc   metal; /* last used font */
         enum htmlfont     metac; /* current font mode */          enum mandoc_esc   metac; /* current font mode */
         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 */
 #define HTML_TOC         (1 << 1) /* emit a table of contents */  #define HTML_TOC         (1 << 1) /* emit a table of contents */
Line 125  void    roff_html_pre(struct html *, const struct roff
Line 119  void    roff_html_pre(struct html *, const struct roff
 void              print_gen_comment(struct html *, struct roff_node *);  void              print_gen_comment(struct html *, 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 *);
 void              print_metaf(struct html *, enum mandoc_esc);  
 struct tag       *print_otag(struct html *, enum htmltag, const char *, ...);  struct tag       *print_otag(struct html *, enum htmltag, const char *, ...);
 void              print_tagq(struct html *, const struct tag *);  void              print_tagq(struct html *, const struct tag *);
 void              print_stagq(struct html *, const struct tag *);  void              print_stagq(struct html *, const struct tag *);
Line 138  void    print_endline(struct html *);
Line 131  void    print_endline(struct html *);
 void              html_close_paragraph(struct html *);  void              html_close_paragraph(struct html *);
 enum roff_tok     html_fillmode(struct html *, enum roff_tok);  enum roff_tok     html_fillmode(struct html *, enum roff_tok);
 char             *html_make_id(const struct roff_node *, int);  char             *html_make_id(const struct roff_node *, int);
   int               html_setfont(struct html *, enum mandoc_esc);

Legend:
Removed from v.1.100  
changed lines
  Added in v.1.103

CVSweb