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

Diff for /mandoc/html.h between version 1.53 and 1.58

version 1.53, 2014/08/14 00:31:43 version 1.58, 2014/09/27 09:05:57
Line 50  enum htmltag {
Line 50  enum htmltag {
         TAG_I,          TAG_I,
         TAG_CODE,          TAG_CODE,
         TAG_SMALL,          TAG_SMALL,
           TAG_STYLE,
         TAG_MAX          TAG_MAX
 };  };
   
 enum    htmlattr {  enum    htmlattr {
         ATTR_HTTPEQUIV,  
         ATTR_CONTENT,  
         ATTR_NAME,          ATTR_NAME,
         ATTR_REL,          ATTR_REL,
         ATTR_HREF,          ATTR_HREF,
Line 65  enum htmlattr {
Line 64  enum htmlattr {
         ATTR_STYLE,          ATTR_STYLE,
         ATTR_WIDTH,          ATTR_WIDTH,
         ATTR_ID,          ATTR_ID,
         ATTR_SUMMARY,  
         ATTR_ALIGN,          ATTR_ALIGN,
         ATTR_COLSPAN,          ATTR_COLSPAN,
           ATTR_CHARSET,
         ATTR_MAX          ATTR_MAX
 };  };
   
Line 103  struct htmlpair {
Line 102  struct htmlpair {
 #define PAIR_CLASS_INIT(p, v)   PAIR_INIT(p, ATTR_CLASS, v)  #define PAIR_CLASS_INIT(p, v)   PAIR_INIT(p, ATTR_CLASS, v)
 #define PAIR_HREF_INIT(p, v)    PAIR_INIT(p, ATTR_HREF, v)  #define PAIR_HREF_INIT(p, v)    PAIR_INIT(p, ATTR_HREF, v)
 #define PAIR_STYLE_INIT(p, h)   PAIR_INIT(p, ATTR_STYLE, (h)->buf)  #define PAIR_STYLE_INIT(p, h)   PAIR_INIT(p, ATTR_STYLE, (h)->buf)
 #define PAIR_SUMMARY_INIT(p, v) PAIR_INIT(p, ATTR_SUMMARY, v)  
   
 enum    htmltype {  enum    htmltype {
         HTML_HTML_4_01_STRICT,          HTML_HTML_4_01_STRICT,
Line 119  struct html {
Line 117  struct html {
 #define HTML_NONOSPACE   (1 << 4) /* never add spaces */  #define HTML_NONOSPACE   (1 << 4) /* never add spaces */
 #define HTML_LITERAL     (1 << 5) /* literal (e.g., <PRE>) context */  #define HTML_LITERAL     (1 << 5) /* literal (e.g., <PRE>) context */
 #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_SPLIT       (1 << 8) /* break line before .An */
         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 */

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.58

CVSweb