[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/mdoc_html.c between version 1.54 and 1.55

version 1.54, 2011/03/20 23:36:42 version 1.55, 2011/04/21 22:59:54
Line 406 
Line 406 
 {  {
         int              child;          int              child;
         struct tag      *t;          struct tag      *t;
           struct htmlpair  tag;
   
         child = 1;          child = 1;
         t = h->tags.head;          t = h->tags.head;
Line 429 
Line 430 
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
         case (MDOC_EQN):          case (MDOC_EQN):
                   PAIR_CLASS_INIT(&tag, "eqn");
                   print_otag(h, TAG_SPAN, 1, &tag);
                 print_text(h, n->eqn->data);                  print_text(h, n->eqn->data);
                 return;                  break;
         case (MDOC_TBL):          case (MDOC_TBL):
                 /*                  /*
                  * This will take care of initialising all of the table                   * This will take care of initialising all of the table
Line 477 
Line 480 
         switch (n->type) {          switch (n->type) {
         case (MDOC_ROOT):          case (MDOC_ROOT):
                 mdoc_root_post(m, n, h);                  mdoc_root_post(m, n, h);
                   break;
           case (MDOC_EQN):
                 break;                  break;
         default:          default:
                 if (mdocs[n->tok].post && ENDBODY_NOT == n->end)                  if (mdocs[n->tok].post && ENDBODY_NOT == n->end)

Legend:
Removed from v.1.54  
changed lines
  Added in v.1.55