[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.325 and 1.331

version 1.325, 2019/01/11 12:56:43 version 1.331, 2019/09/15 00:08:55
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2014-2019 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
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 294  html_mdoc(void *arg, const struct roff_meta *mdoc)
Line 294  html_mdoc(void *arg, const struct roff_meta *mdoc)
         if ((h->oflags & HTML_FRAGMENT) == 0) {          if ((h->oflags & HTML_FRAGMENT) == 0) {
                 print_gen_decls(h);                  print_gen_decls(h);
                 print_otag(h, TAG_HTML, "");                  print_otag(h, TAG_HTML, "");
                 if (n->type == ROFFT_COMMENT)                  if (n != NULL && n->type == ROFFT_COMMENT)
                         print_gen_comment(h, n);                          print_gen_comment(h, n);
                 t = print_otag(h, TAG_HEAD, "");                  t = print_otag(h, TAG_HEAD, "");
                 print_mdoc_head(mdoc, h);                  print_mdoc_head(mdoc, h);
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;
         t = h->tag;  
         if (t->tag == TAG_P || t->tag == TAG_PRE)  
                 t = t->next;  
   
         n->flags &= ~NODE_ENDED;          n->flags &= ~NODE_ENDED;
         switch (n->type) {          switch (n->type) {
         case ROFFT_TEXT:          case ROFFT_TEXT:
                 /* No tables in this mode... */                  if (n->flags & NODE_LINE) {
                 assert(NULL == h->tblt);                          switch (*n->string) {
                           case '\0':
                 /*                                  h->col = 1;
                  * Make sure that if we're in a literal mode already                                  print_endline(h);
                  * (i.e., within a <PRE>) don't print the newline.                                  return;
                  */                          case ' ':
                 if (*n->string == ' ' && n->flags & NODE_LINE &&                                  if ((h->flags & HTML_NONEWLINE) == 0 &&
                     (h->flags & HTML_NONEWLINE) == 0 &&                                      (n->flags & NODE_NOFILL) == 0)
                     (n->flags & NODE_NOFILL) == 0)                                          print_otag(h, TAG_BR, "");
                         print_otag(h, TAG_BR, "");                                  break;
                           default:
                                   break;
                           }
                   }
                   t = h->tag;
                   t->refcnt++;
                 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 379  print_mdoc_node(MDOC_ARGS)
Line 386  print_mdoc_node(MDOC_ARGS)
                         h->flags |= HTML_NOSPACE;                          h->flags |= HTML_NOSPACE;
                 break;                  break;
         case ROFFT_EQN:          case ROFFT_EQN:
                   t = h->tag;
                   t->refcnt++;
                 print_eqn(h, n->eqn);                  print_eqn(h, n->eqn);
                 break;                  break;
         case ROFFT_TBL:          case ROFFT_TBL:
Line 395  print_mdoc_node(MDOC_ARGS)
Line 404  print_mdoc_node(MDOC_ARGS)
                  * the "meta" table state.  This will be reopened on the                   * the "meta" table state.  This will be reopened on the
                  * next table element.                   * next table element.
                  */                   */
                 if (h->tblt != NULL) {                  if (h->tblt != NULL)
                         print_tblclose(h);                          print_tblclose(h);
                         t = h->tag;  
                 }  
                 assert(h->tblt == NULL);                  assert(h->tblt == NULL);
                   t = h->tag;
                   t->refcnt++;
                 if (n->tok < ROFF_MAX) {                  if (n->tok < ROFF_MAX) {
                         roff_html_pre(h, n);                          roff_html_pre(h, n);
                           t->refcnt--;
                         print_stagq(h, t);                          print_stagq(h, t);
                         return;                          return;
                 }                  }
Line 421  print_mdoc_node(MDOC_ARGS)
Line 431  print_mdoc_node(MDOC_ARGS)
         if (child && n->child != NULL)          if (child && n->child != NULL)
                 print_mdoc_nodelist(meta, n->child, h);                  print_mdoc_nodelist(meta, n->child, h);
   
           t->refcnt--;
         print_stagq(h, t);          print_stagq(h, t);
   
         switch (n->type) {          switch (n->type) {
Line 436  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 528  mdoc_sh_pre(MDOC_ARGS)
Line 533  mdoc_sh_pre(MDOC_ARGS)
                 html_close_paragraph(h);                  html_close_paragraph(h);
                 if ((h->oflags & HTML_TOC) == 0 ||                  if ((h->oflags & HTML_TOC) == 0 ||
                     h->flags & HTML_TOCDONE ||                      h->flags & HTML_TOCDONE ||
                     n->sec <= SEC_SYNOPSIS)                      n->sec <= SEC_SYNOPSIS) {
                           print_otag(h, TAG_SECTION, "c", "Sh");
                         break;                          break;
                   }
                 h->flags |= HTML_TOCDONE;                  h->flags |= HTML_TOCDONE;
                 sc = 0;                  sc = 0;
                 for (sn = n->next; sn != NULL; sn = sn->next)                  for (sn = n->next; sn != NULL; sn = sn->next)
Line 570  mdoc_sh_pre(MDOC_ARGS)
Line 577  mdoc_sh_pre(MDOC_ARGS)
                         print_tagq(h, tsec);                          print_tagq(h, tsec);
                 }                  }
                 print_tagq(h, t);                  print_tagq(h, t);
                   print_otag(h, TAG_SECTION, "c", "Sh");
                 break;                  break;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 id = html_make_id(n, 1);                  id = html_make_id(n, 1);
Line 595  mdoc_ss_pre(MDOC_ARGS)
Line 603  mdoc_ss_pre(MDOC_ARGS)
         switch (n->type) {          switch (n->type) {
         case ROFFT_BLOCK:          case ROFFT_BLOCK:
                 html_close_paragraph(h);                  html_close_paragraph(h);
                   print_otag(h, TAG_SECTION, "c", "Ss");
                 return 1;                  return 1;
         case ROFFT_HEAD:          case ROFFT_HEAD:
                 break;                  break;
Line 646  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 656  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 1265  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 1693  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.

Legend:
Removed from v.1.325  
changed lines
  Added in v.1.331

CVSweb