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

Diff for /mandoc/mdoc_html.c between version 1.116 and 1.117

version 1.116, 2010/12/15 15:32:01 version 1.117, 2010/12/15 15:59:23
Line 369  static void
Line 369  static void
 print_mdoc(MDOC_ARGS)  print_mdoc(MDOC_ARGS)
 {  {
         struct tag      *t;          struct tag      *t;
         struct htmlpair  tag;  
   
         t = print_otag(h, TAG_HEAD, 0, NULL);          t = print_otag(h, TAG_HEAD, 0, NULL);
         print_mdoc_head(m, n, h);          print_mdoc_head(m, n, h);
Line 377  print_mdoc(MDOC_ARGS)
Line 376  print_mdoc(MDOC_ARGS)
   
         t = print_otag(h, TAG_BODY, 0, NULL);          t = print_otag(h, TAG_BODY, 0, NULL);
   
         tag.key = ATTR_CLASS;  
         tag.val = "body";  
         print_otag(h, TAG_DIV, 1, &tag);  
   
         print_mdoc_nodelist(m, n, h);          print_mdoc_nodelist(m, n, h);
         print_tagq(h, t);          print_tagq(h, t);
 }  }
Line 1043  mdoc_bl_pre(MDOC_ARGS)
Line 1038  mdoc_bl_pre(MDOC_ARGS)
                 bufcat_su(h, "margin-left", &su);                  bufcat_su(h, "margin-left", &su);
                 PAIR_STYLE_INIT(&tag[1], h);                  PAIR_STYLE_INIT(&tag[1], h);
                 i = 2;                  i = 2;
   
         }          }
   
         switch (n->data.Bl->type) {          switch (n->data.Bl->type) {

Legend:
Removed from v.1.116  
changed lines
  Added in v.1.117

CVSweb