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

Diff for /mandoc/man_html.c between version 1.102 and 1.109

version 1.102, 2014/09/27 09:26:01 version 1.109, 2015/01/24 02:41:49
Line 1 
Line 1 
 /*      $Id$ */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013, 2014 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
Line 25 
Line 25 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  
 #include "mandoc_aux.h"  #include "mandoc_aux.h"
   #include "man.h"
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
 #include "man.h"  
 #include "main.h"  #include "main.h"
   
 /* TODO: preserve ident widths. */  /* TODO: preserve ident widths. */
Line 101  static const struct htmlman mans[MAN_MAX] = {
Line 100  static const struct htmlman mans[MAN_MAX] = {
         { man_I_pre, NULL }, /* I */          { man_I_pre, NULL }, /* I */
         { man_alt_pre, NULL }, /* IR */          { man_alt_pre, NULL }, /* IR */
         { man_alt_pre, NULL }, /* RI */          { man_alt_pre, NULL }, /* RI */
         { man_ign_pre, NULL }, /* na */  
         { man_br_pre, NULL }, /* sp */          { man_br_pre, NULL }, /* sp */
         { man_literal_pre, NULL }, /* nf */          { man_literal_pre, NULL }, /* nf */
         { man_literal_pre, NULL }, /* fi */          { man_literal_pre, NULL }, /* fi */
Line 142  print_bvspace(struct html *h, const struct man_node *n
Line 140  print_bvspace(struct html *h, const struct man_node *n
                 if (NULL == n->prev)                  if (NULL == n->prev)
                         return;                          return;
   
         print_otag(h, TAG_P, 0, NULL);          print_paragraph(h);
 }  }
   
 void  void
Line 213  print_man_node(MAN_ARGS)
Line 211  print_man_node(MAN_ARGS)
                 man_root_pre(man, n, mh, h);                  man_root_pre(man, n, mh, h);
                 break;                  break;
         case MAN_TEXT:          case MAN_TEXT:
                 /*  
                  * If we have a blank line, output a vertical space.  
                  * If we have a space as the first character, break  
                  * before printing the line's data.  
                  */  
                 if ('\0' == *n->string) {                  if ('\0' == *n->string) {
                         print_otag(h, TAG_P, 0, NULL);                          print_paragraph(h);
                         return;                          return;
                 }                  }
                   if (n->flags & MAN_LINE && (*n->string == ' ' ||
                 if (' ' == *n->string && MAN_LINE & n->flags)                      (n->prev != NULL && mh->fl & MANH_LITERAL &&
                        ! (h->flags & HTML_NONEWLINE))))
                         print_otag(h, TAG_BR, 0, NULL);                          print_otag(h, TAG_BR, 0, NULL);
                 else if (MANH_LITERAL & mh->fl && n->prev)  
                         print_otag(h, TAG_BR, 0, NULL);  
   
                 print_text(h, n->string);                  print_text(h, n->string);
                 return;                  return;
         case MAN_EQN:          case MAN_EQN:
Line 290  a2width(const struct man_node *n, struct roffsu *su)
Line 281  a2width(const struct man_node *n, struct roffsu *su)
   
         if (MAN_TEXT != n->type)          if (MAN_TEXT != n->type)
                 return(0);                  return(0);
         if (a2roffsu(n->string, su, SCALE_BU))          if (a2roffsu(n->string, su, SCALE_EN))
                 return(1);                  return(1);
   
         return(0);          return(0);
Line 370  man_br_pre(MAN_ARGS)
Line 361  man_br_pre(MAN_ARGS)
         if (MAN_sp == n->tok) {          if (MAN_sp == n->tok) {
                 if (NULL != (n = n->child))                  if (NULL != (n = n->child))
                         if ( ! a2roffsu(n->string, &su, SCALE_VS))                          if ( ! a2roffsu(n->string, &su, SCALE_VS))
                                 SCALE_VS_INIT(&su, atoi(n->string));                                  su.scale = 1.0;
         } else          } else
                 su.scale = 0.0;                  su.scale = 0.0;
   
Line 538  man_IP_pre(MAN_ARGS)
Line 529  man_IP_pre(MAN_ARGS)
 static int  static int
 man_HP_pre(MAN_ARGS)  man_HP_pre(MAN_ARGS)
 {  {
         struct htmlpair  tag;          struct htmlpair  tag[2];
         struct roffsu    su;          struct roffsu    su;
         const struct man_node *np;          const struct man_node *np;
   
Line 558  man_HP_pre(MAN_ARGS)
Line 549  man_HP_pre(MAN_ARGS)
         bufcat_su(h, "margin-left", &su);          bufcat_su(h, "margin-left", &su);
         su.scale = -su.scale;          su.scale = -su.scale;
         bufcat_su(h, "text-indent", &su);          bufcat_su(h, "text-indent", &su);
         PAIR_STYLE_INIT(&tag, h);          PAIR_STYLE_INIT(&tag[0], h);
         print_otag(h, TAG_P, 1, &tag);          PAIR_CLASS_INIT(&tag[1], "spacer");
           print_otag(h, TAG_DIV, 2, tag);
         return(1);          return(1);
 }  }
   

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.109

CVSweb