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

Diff for /mandoc/roff_html.c between version 1.12 and 1.14

version 1.12, 2018/06/25 14:53:58 version 1.14, 2018/12/13 11:55:47
Line 20 
Line 20 
 #include <assert.h>  #include <assert.h>
 #include <stddef.h>  #include <stddef.h>
   
 #include "mandoc.h"  
 #include "roff.h"  #include "roff.h"
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
Line 58  roff_html_pre(struct html *h, const struct roff_node *
Line 57  roff_html_pre(struct html *h, const struct roff_node *
 static void  static void
 roff_html_pre_br(ROFF_HTML_ARGS)  roff_html_pre_br(ROFF_HTML_ARGS)
 {  {
         struct tag      *t;          print_otag(h, TAG_BR, "");
   
         t = print_otag(h, TAG_DIV, "");  
         print_text(h, "\\~");  /* So the div isn't empty. */  
         print_tagq(h, t);  
 }  }
   
 static void  static void

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.14

CVSweb