[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.328 and 1.332

version 1.328, 2019/03/01 10:57:18 version 1.332, 2019/12/11 18:44:05
Line 351  print_mdoc_node(MDOC_ARGS)
Line 351  print_mdoc_node(MDOC_ARGS)
         if (n->type == ROFFT_COMMENT || n->flags & NODE_NOPRT)          if (n->type == ROFFT_COMMENT || n->flags & NODE_NOPRT)
                 return;                  return;
   
         html_fillmode(h, n->flags & NODE_NOFILL ? ROFF_nf : ROFF_fi);          if (n->flags & NODE_NOFILL) {
                   html_fillmode(h, ROFF_nf);
                   if (n->flags & NODE_LINE)
                           print_endline(h);
           } else
                   html_fillmode(h, ROFF_fi);
   
         child = 1;          child = 1;
         n->flags &= ~NODE_ENDED;          n->flags &= ~NODE_ENDED;
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
                   if (n->flags & NODE_LINE) {
                           switch (*n->string) {
                           case '\0':
                                   h->col = 1;
                                   print_endline(h);
                                   return;
                           case ' ':
                                   if ((h->flags & HTML_NONEWLINE) == 0 &&
                                       (n->flags & NODE_NOFILL) == 0)
                                           print_otag(h, TAG_BR, "");
                                   break;
                           default:
                                   break;
                           }
                   }
                 t = h->tag;                  t = h->tag;
                 t->refcnt++;                  t->refcnt++;
   
                 /* No tables in this mode... */  
                 assert(NULL == h->tblt);  
   
                 /*  
                  * Make sure that if we're in a literal mode already  
                  * (i.e., within a <PRE>) don't print the newline.  
                  */  
                 if (*n->string == ' ' && n->flags & NODE_LINE &&  
                     (h->flags & HTML_NONEWLINE) == 0 &&  
                     (n->flags & NODE_NOFILL) == 0)  
                         print_otag(h, TAG_BR, "");  
                 if (NODE_DELIMC & n->flags)                  if (NODE_DELIMC & n->flags)
                         h->flags |= HTML_NOSPACE;                          h->flags |= HTML_NOSPACE;
                 print_text(h, n->string);                  print_text(h, n->string);
Line 439  print_mdoc_node(MDOC_ARGS)
Line 447  print_mdoc_node(MDOC_ARGS)
                         n->body->flags |= NODE_ENDED;                          n->body->flags |= NODE_ENDED;
                 break;                  break;
         }          }
   
         if (n->flags & NODE_NOFILL &&  
             (n->next == NULL || n->next->flags & NODE_LINE)) {  
                 h->col++;  
                 print_endline(h);  
         }  
 }  }
   
 static void  static void
Line 653  mdoc_nd_pre(MDOC_ARGS)
Line 655  mdoc_nd_pre(MDOC_ARGS)
 {  {
         switch (n->type) {          switch (n->type) {
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 html_close_paragraph(h);  
                 return 1;                  return 1;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 return 0;                  return 0;
Line 663  mdoc_nd_pre(MDOC_ARGS)
Line 664  mdoc_nd_pre(MDOC_ARGS)
                 abort();                  abort();
         }          }
         print_text(h, "\\(em");          print_text(h, "\\(em");
         /* Cannot use TAG_SPAN because it may contain blocks. */          print_otag(h, TAG_SPAN, "c", "Nd");
         print_otag(h, TAG_DIV, "c", "Nd");  
         return 1;          return 1;
 }  }
   
Line 1272  mdoc_skip_pre(MDOC_ARGS)
Line 1272  mdoc_skip_pre(MDOC_ARGS)
 static int  static int
 mdoc_pp_pre(MDOC_ARGS)  mdoc_pp_pre(MDOC_ARGS)
 {  {
         if ((n->flags & NODE_NOFILL) == 0) {          if (n->flags & NODE_NOFILL) {
                   print_endline(h);
                   h->col = 1;
                   print_endline(h);
           } else {
                 html_close_paragraph(h);                  html_close_paragraph(h);
                 print_otag(h, TAG_P, "c", "Pp");                  print_otag(h, TAG_P, "c", "Pp");
         }          }
Line 1700  mdoc_quote_pre(MDOC_ARGS)
Line 1704  mdoc_quote_pre(MDOC_ARGS)
                 /*                  /*
                  * Give up on semantic markup for now.                   * Give up on semantic markup for now.
                  * We cannot use TAG_SPAN because .Oo may contain blocks.                   * We cannot use TAG_SPAN because .Oo may contain blocks.
                  * We cannot use TAG_IDIV because we might be in a                   * We cannot use TAG_DIV because we might be in a
                  * phrasing context (like .Dl or .Pp); we cannot                   * phrasing context (like .Dl or .Pp); we cannot
                  * close out a .Pp at this point either because                   * close out a .Pp at this point either because
                  * that would break the line.                   * that would break the line.
Line 1715  mdoc_quote_pre(MDOC_ARGS)
Line 1719  mdoc_quote_pre(MDOC_ARGS)
                 break;                  break;
         case MDOC_Do:          case MDOC_Do:
         case MDOC_Dq:          case MDOC_Dq:
                   print_text(h, "\\(lq");
                   break;
         case MDOC_Qo:          case MDOC_Qo:
         case MDOC_Qq:          case MDOC_Qq:
                 print_text(h, "\\(lq");                  print_text(h, "\"");
                 break;                  break;
         case MDOC_Po:          case MDOC_Po:
         case MDOC_Pq:          case MDOC_Pq:
Line 1773  mdoc_quote_post(MDOC_ARGS)
Line 1779  mdoc_quote_post(MDOC_ARGS)
                 else                  else
                         print_text(h, n->norm->Es->child->next->string);                          print_text(h, n->norm->Es->child->next->string);
                 break;                  break;
         case MDOC_Qo:  
         case MDOC_Qq:  
         case MDOC_Do:          case MDOC_Do:
         case MDOC_Dq:          case MDOC_Dq:
                 print_text(h, "\\(rq");                  print_text(h, "\\(rq");
                   break;
           case MDOC_Qo:
           case MDOC_Qq:
                   print_text(h, "\"");
                 break;                  break;
         case MDOC_Po:          case MDOC_Po:
         case MDOC_Pq:          case MDOC_Pq:

Legend:
Removed from v.1.328  
changed lines
  Added in v.1.332

CVSweb