]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_html.c
Move handling of the roff(7) .ft request from the man(7)
[mandoc.git] / man_html.c
index ef2f282c0d6ce67e4eb95146ecd63d81622282ea..e895698fcd642a25715ed99aad3a0ef05d832b42 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_html.c,v 1.137 2017/05/04 17:48:28 schwarze Exp $ */
+/*     $Id: man_html.c,v 1.139 2017/05/05 02:06:19 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -65,11 +65,11 @@ static      int               man_SM_pre(MAN_ARGS);
 static int               man_SS_pre(MAN_ARGS);
 static int               man_UR_pre(MAN_ARGS);
 static int               man_alt_pre(MAN_ARGS);
-static int               man_br_pre(MAN_ARGS);
 static int               man_ign_pre(MAN_ARGS);
 static int               man_in_pre(MAN_ARGS);
 static void              man_root_post(MAN_ARGS);
 static void              man_root_pre(MAN_ARGS);
+static int               man_sp_pre(MAN_ARGS);
 
 static const struct htmlman __mans[MAN_MAX - MAN_TH] = {
        { NULL, NULL }, /* TH */
@@ -92,7 +92,7 @@ static        const struct htmlman __mans[MAN_MAX - MAN_TH] = {
        { man_I_pre, NULL }, /* I */
        { man_alt_pre, NULL }, /* IR */
        { man_alt_pre, NULL }, /* RI */
-       { man_br_pre, NULL }, /* sp */
+       { man_sp_pre, NULL }, /* sp */
        { NULL, NULL }, /* nf */
        { NULL, NULL }, /* fi */
        { NULL, NULL }, /* RE */
@@ -102,7 +102,6 @@ static      const struct htmlman __mans[MAN_MAX - MAN_TH] = {
        { man_ign_pre, NULL }, /* PD */
        { man_ign_pre, NULL }, /* AT */
        { man_in_pre, NULL }, /* in */
-       { man_ign_pre, NULL }, /* ft */
        { man_OP_pre, NULL }, /* OP */
        { NULL, NULL }, /* EX */
        { NULL, NULL }, /* EE */
@@ -305,13 +304,7 @@ print_man_node(MAN_ARGS)
 
                t = h->tag;
                if (n->tok < ROFF_MAX) {
-                       switch(n->tok) {
-                       case ROFF_br:
-                               man_br_pre(man, n, h);
-                               break;
-                       default:
-                               abort();
-                       }
+                       roff_html_pre(h, n);
                        break;
                }
 
@@ -423,18 +416,14 @@ man_root_post(MAN_ARGS)
 
 
 static int
-man_br_pre(MAN_ARGS)
+man_sp_pre(MAN_ARGS)
 {
        struct roffsu    su;
 
        SCALE_VS_INIT(&su, 1);
-
-       if (MAN_sp == n->tok) {
-               if (NULL != (n = n->child))
-                       if ( ! a2roffsu(n->string, &su, SCALE_VS))
-                               su.scale = 1.0;
-       } else
-               su.scale = 0.0;
+       if (NULL != (n = n->child))
+               if ( ! a2roffsu(n->string, &su, SCALE_VS))
+                       su.scale = 1.0;
 
        print_otag(h, TAG_DIV, "suh", &su);