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

Diff for /mandoc/man_html.c between version 1.101 and 1.104

version 1.101, 2014/09/27 09:20:03 version 1.104, 2014/09/27 11:17:19
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
Line 142  print_bvspace(struct html *h, const struct man_node *n
Line 142  print_bvspace(struct html *h, const struct man_node *n
                 if (NULL == n->prev)                  if (NULL == n->prev)
                         return;                          return;
   
         print_otag(h, TAG_P, 0, NULL);          print_paragraph(h);
 }  }
   
 void  void
Line 219  print_man_node(MAN_ARGS)
Line 219  print_man_node(MAN_ARGS)
                  * before printing the line's data.                   * before printing the line's data.
                  */                   */
                 if ('\0' == *n->string) {                  if ('\0' == *n->string) {
                         print_otag(h, TAG_P, 0, NULL);                          print_paragraph(h);
                         return;                          return;
                 }                  }
   
Line 309  man_root_pre(MAN_ARGS)
Line 309  man_root_pre(MAN_ARGS)
   
         PAIR_CLASS_INIT(&tag, "head");          PAIR_CLASS_INIT(&tag, "head");
         t = print_otag(h, TAG_TABLE, 1, &tag);          t = print_otag(h, TAG_TABLE, 1, &tag);
         PAIR_INIT(&tag, ATTR_WIDTH, "30%");  
         print_otag(h, TAG_COL, 1, &tag);  
         print_otag(h, TAG_COL, 1, &tag);  
         print_otag(h, TAG_COL, 1, &tag);  
   
         print_otag(h, TAG_TBODY, 0, NULL);          print_otag(h, TAG_TBODY, 0, NULL);
   
Line 344  man_root_post(MAN_ARGS)
Line 340  man_root_post(MAN_ARGS)
   
         PAIR_CLASS_INIT(&tag, "foot");          PAIR_CLASS_INIT(&tag, "foot");
         t = print_otag(h, TAG_TABLE, 1, &tag);          t = print_otag(h, TAG_TABLE, 1, &tag);
         PAIR_INIT(&tag, ATTR_WIDTH, "50%");  
         print_otag(h, TAG_COL, 1, &tag);  
         print_otag(h, TAG_COL, 1, &tag);  
   
         tt = print_otag(h, TAG_TR, 0, NULL);          tt = print_otag(h, TAG_TR, 0, NULL);
   
Line 545  man_IP_pre(MAN_ARGS)
Line 538  man_IP_pre(MAN_ARGS)
 static int  static int
 man_HP_pre(MAN_ARGS)  man_HP_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag;          struct htmlpair  tag[2];
         struct roffsu    su;          struct roffsu    su;
         const struct man_node *np;          const struct man_node *np;
   
Line 565  man_HP_pre(MAN_ARGS)
Line 558  man_HP_pre(MAN_ARGS)
         bufcat_su(h, "margin-left", &su);          bufcat_su(h, "margin-left", &su);
         su.scale = -su.scale;          su.scale = -su.scale;
         bufcat_su(h, "text-indent", &su);          bufcat_su(h, "text-indent", &su);
         PAIR_STYLE_INIT(&tag, h);          PAIR_STYLE_INIT(&tag[0], h);
         print_otag(h, TAG_P, 1, &tag);          PAIR_CLASS_INIT(&tag[1], "spacer");
           print_otag(h, TAG_DIV, 2, tag);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.101  
changed lines
  Added in v.1.104

CVSweb