[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.274 and 1.275

version 1.274, 2017/03/13 19:01:38 version 1.275, 2017/03/13 20:22:18
Line 48  struct htmlmdoc {
Line 48  struct htmlmdoc {
         void            (*post)(MDOC_ARGS);          void            (*post)(MDOC_ARGS);
 };  };
   
   static  char             *cond_id(const struct roff_node *);
 static  char             *make_id(const struct roff_node *);  static  char             *make_id(const struct roff_node *);
 static  void              print_mdoc_head(MDOC_ARGS);  static  void              print_mdoc_head(MDOC_ARGS);
 static  void              print_mdoc_node(MDOC_ARGS);  static  void              print_mdoc_node(MDOC_ARGS);
Line 498  make_id(const struct roff_node *n)
Line 499  make_id(const struct roff_node *n)
         return buf;          return buf;
 }  }
   
   static char *
   cond_id(const struct roff_node *n)
   {
           if (n->child != NULL &&
               n->child->type == ROFFT_TEXT &&
               (n->prev == NULL ||
                (n->prev->type == ROFFT_TEXT &&
                 strcmp(n->prev->string, "|") == 0)) &&
               (n->parent->tok == MDOC_It ||
                (n->parent->tok == MDOC_Xo &&
                 n->parent->parent->prev == NULL &&
                 n->parent->parent->parent->tok == MDOC_It)))
                   return make_id(n);
           return NULL;
   }
   
 static int  static int
 mdoc_sh_pre(MDOC_ARGS)  mdoc_sh_pre(MDOC_ARGS)
 {  {
Line 507  mdoc_sh_pre(MDOC_ARGS)
Line 524  mdoc_sh_pre(MDOC_ARGS)
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 id = make_id(n);                  id = make_id(n);
                 print_otag(h, TAG_H1, "cTi", "Sh", id);                  print_otag(h, TAG_H1, "cTi", "Sh", id);
                   print_otag(h, TAG_A, "chR", "selflink", id);
                 free(id);                  free(id);
                 break;                  break;
         case ROFFT_BODY:          case ROFFT_BODY:
Line 529  mdoc_ss_pre(MDOC_ARGS)
Line 547  mdoc_ss_pre(MDOC_ARGS)
   
         id = make_id(n);          id = make_id(n);
         print_otag(h, TAG_H2, "cTi", "Ss", id);          print_otag(h, TAG_H2, "cTi", "Ss", id);
           print_otag(h, TAG_A, "chR", "selflink", id);
         free(id);          free(id);
         return 1;          return 1;
 }  }
Line 536  mdoc_ss_pre(MDOC_ARGS)
Line 555  mdoc_ss_pre(MDOC_ARGS)
 static int  static int
 mdoc_fl_pre(MDOC_ARGS)  mdoc_fl_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_B, "cT", "Fl");          char    *id;
         print_text(h, "\\-");  
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_B, "cTi", "Fl", id);
           free(id);
   
           print_text(h, "\\-");
         if (!(n->child == NULL &&          if (!(n->child == NULL &&
             (n->next == NULL ||              (n->next == NULL ||
              n->next->type == ROFFT_TEXT ||               n->next->type == ROFFT_TEXT ||
Line 551  mdoc_fl_pre(MDOC_ARGS)
Line 575  mdoc_fl_pre(MDOC_ARGS)
 static int  static int
 mdoc_cm_pre(MDOC_ARGS)  mdoc_cm_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_B, "cT", "Cm");          char    *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_B, "cTi", "Cm", id);
           free(id);
         return 1;          return 1;
 }  }
   
Line 1068  mdoc_cd_pre(MDOC_ARGS)
Line 1097  mdoc_cd_pre(MDOC_ARGS)
 static int  static int
 mdoc_dv_pre(MDOC_ARGS)  mdoc_dv_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_CODE, "cT", "Dv");          char    *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_CODE, "cTi", "Dv", id);
           free(id);
         return 1;          return 1;
 }  }
   
 static int  static int
 mdoc_ev_pre(MDOC_ARGS)  mdoc_ev_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_CODE, "cT", "Ev");          char    *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_CODE, "cTi", "Ev", id);
           free(id);
         return 1;          return 1;
 }  }
   
 static int  static int
 mdoc_er_pre(MDOC_ARGS)  mdoc_er_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_CODE, "cT", "Er");          char    *id;
   
           id = n->sec == SEC_ERRORS &&
               (n->parent->tok == MDOC_It ||
                (n->parent->tok == MDOC_Bq &&
                 n->parent->parent->parent->tok == MDOC_It)) ?
               make_id(n) : NULL;
   
           if (id != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_CODE, "cTi", "Er", id);
           free(id);
         return 1;          return 1;
 }  }
   
Line 1436  mdoc_in_pre(MDOC_ARGS)
Line 1486  mdoc_in_pre(MDOC_ARGS)
 static int  static int
 mdoc_ic_pre(MDOC_ARGS)  mdoc_ic_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_B, "cT", "Ic");          char    *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_B, "cTi", "Ic", id);
           free(id);
         return 1;          return 1;
 }  }
   
Line 1488  mdoc_bf_pre(MDOC_ARGS)
Line 1543  mdoc_bf_pre(MDOC_ARGS)
 static int  static int
 mdoc_ms_pre(MDOC_ARGS)  mdoc_ms_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_B, "cT", "Ms");          char *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_B, "cTi", "Ms", id);
           free(id);
         return 1;          return 1;
 }  }
   
Line 1524  mdoc_rs_pre(MDOC_ARGS)
Line 1584  mdoc_rs_pre(MDOC_ARGS)
 static int  static int
 mdoc_no_pre(MDOC_ARGS)  mdoc_no_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_SPAN, "c", "No");          char *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_SPAN, "ci", "No", id);
           free(id);
         return 1;          return 1;
 }  }
   
 static int  static int
 mdoc_li_pre(MDOC_ARGS)  mdoc_li_pre(MDOC_ARGS)
 {  {
         print_otag(h, TAG_CODE, "c", "Li");          char    *id;
   
           if ((id = cond_id(n)) != NULL)
                   print_otag(h, TAG_A, "chR", "selflink", id);
           print_otag(h, TAG_CODE, "ci", "Li", id);
           free(id);
         return 1;          return 1;
 }  }
   

Legend:
Removed from v.1.274  
changed lines
  Added in v.1.275

CVSweb