]> git.cameronkatri.com Git - mandoc.git/blobdiff - html.c
Support nesting of elements with next-line scope.
[mandoc.git] / html.c
diff --git a/html.c b/html.c
index 94cef1ee6f698ecdb564f848a503b00507ef0bf5..b97f357705e7367bff8f98b3b063d6e16185a105 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.236 2018/06/25 14:00:28 schwarze Exp $ */
+/*     $Id: html.c,v 1.239 2018/08/16 13:54:06 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -104,19 +104,6 @@ static     const struct htmldata htmltags[TAG_MAX] = {
        {"mover",       0},
 };
 
-static const char      *const roffscales[SCALE_MAX] = {
-       "cm", /* SCALE_CM */
-       "in", /* SCALE_IN */
-       "pc", /* SCALE_PC */
-       "pt", /* SCALE_PT */
-       "em", /* SCALE_EM */
-       "em", /* SCALE_MM */
-       "ex", /* SCALE_EN */
-       "ex", /* SCALE_BU */
-       "em", /* SCALE_VS */
-       "ex", /* SCALE_FS */
-};
-
 /* Avoid duplicate HTML id= attributes. */
 static struct ohash     id_unique;
 
@@ -323,57 +310,6 @@ html_make_id(const struct roff_node *n, int unique)
        return buf;
 }
 
-int
-html_strlen(const char *cp)
-{
-       size_t           rsz;
-       int              skip, sz;
-
-       /*
-        * Account for escaped sequences within string length
-        * calculations.  This follows the logic in term_strlen() as we
-        * must calculate the width of produced strings.
-        * Assume that characters are always width of "1".  This is
-        * hacky, but it gets the job done for approximation of widths.
-        */
-
-       sz = 0;
-       skip = 0;
-       while (1) {
-               rsz = strcspn(cp, "\\");
-               if (rsz) {
-                       cp += rsz;
-                       if (skip) {
-                               skip = 0;
-                               rsz--;
-                       }
-                       sz += rsz;
-               }
-               if ('\0' == *cp)
-                       break;
-               cp++;
-               switch (mandoc_escape(&cp, NULL, NULL)) {
-               case ESCAPE_ERROR:
-                       return sz;
-               case ESCAPE_UNICODE:
-               case ESCAPE_NUMBERED:
-               case ESCAPE_SPECIAL:
-               case ESCAPE_OVERSTRIKE:
-                       if (skip)
-                               skip = 0;
-                       else
-                               sz++;
-                       break;
-               case ESCAPE_SKIPCHAR:
-                       skip = 1;
-                       break;
-               default:
-                       break;
-               }
-       }
-       return sz;
-}
-
 static int
 print_escape(struct html *h, char c)
 {
@@ -497,6 +433,9 @@ print_encode(struct html *h, const char *p, const char *pend, int norecurse)
                        if (c <= 0)
                                continue;
                        break;
+               case ESCAPE_DEVICE:
+                       print_word(h, "html");
+                       continue;
                case ESCAPE_BREAK:
                        breakline = 1;
                        continue;
@@ -553,13 +492,10 @@ struct tag *
 print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
 {
        va_list          ap;
-       struct roffsu    mysu, *su;
-       char             numbuf[16];
        struct tag      *t;
        const char      *attr;
        char            *arg1, *arg2;
-       double           v;
-       int              i, have_style, tflags;
+       int              tflags;
 
        tflags = htmltags[tag].flags;
 
@@ -599,17 +535,12 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
 
        va_start(ap, fmt);
 
-       have_style = 0;
        while (*fmt != '\0') {
-               if (*fmt == 's') {
-                       have_style = 1;
-                       fmt++;
-                       break;
-               }
 
-               /* Parse a non-style attribute and its arguments. */
+               /* Parse attributes and arguments. */
 
                arg1 = va_arg(ap, char *);
+               arg2 = NULL;
                switch (*fmt++) {
                case 'c':
                        attr = "class";
@@ -620,6 +551,10 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
                case 'i':
                        attr = "id";
                        break;
+               case 's':
+                       attr = "style";
+                       arg2 = va_arg(ap, char *);
+                       break;
                case '?':
                        attr = arg1;
                        arg1 = va_arg(ap, char *);
@@ -627,13 +562,12 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
                default:
                        abort();
                }
-               arg2 = NULL;
                if (*fmt == 'M')
                        arg2 = va_arg(ap, char *);
                if (arg1 == NULL)
                        continue;
 
-               /* Print the non-style attributes. */
+               /* Print the attributes. */
 
                print_byte(h, ' ');
                print_word(h, attr);
@@ -660,79 +594,19 @@ print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
                        fmt++;
                        break;
                default:
-                       print_encode(h, arg1, NULL, 1);
+                       if (arg2 == NULL)
+                               print_encode(h, arg1, NULL, 1);
+                       else {
+                               print_word(h, arg1);
+                               print_byte(h, ':');
+                               print_byte(h, ' ');
+                               print_word(h, arg2);
+                               print_byte(h, ';');
+                       }
                        break;
                }
                print_byte(h, '"');
        }
-
-       /* Print out styles. */
-
-       while (*fmt != '\0') {
-               arg1 = NULL;
-               su = NULL;
-
-               /* First letter: input argument type. */
-
-               switch (*fmt++) {
-               case 'h':
-                       i = va_arg(ap, int);
-                       su = &mysu;
-                       SCALE_HS_INIT(su, i);
-                       break;
-               case 's':
-                       arg1 = va_arg(ap, char *);
-                       break;
-               case 'u':
-                       su = va_arg(ap, struct roffsu *);
-                       break;
-               default:
-                       abort();
-               }
-
-               /* Second letter: style name. */
-
-               switch (*fmt++) {
-               case 'h':
-                       attr = "height";
-                       break;
-               case 'l':
-                       attr = "margin-left";
-                       break;
-               case '?':
-                       attr = arg1;
-                       arg1 = va_arg(ap, char *);
-                       break;
-               default:
-                       abort();
-               }
-               if (su == NULL && arg1 == NULL)
-                       continue;
-
-               if (have_style == 1)
-                       print_word(h, " style=\"");
-               else
-                       print_byte(h, ' ');
-               print_word(h, attr);
-               print_byte(h, ':');
-               print_byte(h, ' ');
-               if (su != NULL) {
-                       v = su->scale;
-                       if (su->unit == SCALE_MM && (v /= 100.0) == 0.0)
-                               v = 1.0;
-                       else if (su->unit == SCALE_BU)
-                               v /= 24.0;
-                       (void)snprintf(numbuf, sizeof(numbuf), "%.2f", v);
-                       print_word(h, numbuf);
-                       print_word(h, roffscales[su->unit]);
-               } else
-                       print_word(h, arg1);
-               print_byte(h, ';');
-               have_style = 2;
-       }
-       if (have_style == 2)
-               print_byte(h, '"');
-
        va_end(ap);
 
        /* Accommodate for "well-formed" singleton escaping. */