diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | example.style.css | 2 | ||||
-rw-r--r-- | html.c | 1 | ||||
-rw-r--r-- | html.h | 1 | ||||
-rw-r--r-- | index.sgml | 2 | ||||
-rw-r--r-- | mdoc_html.c | 1 | ||||
-rw-r--r-- | style.css | 2 |
7 files changed, 4 insertions, 7 deletions
@@ -19,7 +19,7 @@ INSTALL_LIB = $(INSTALL) -m 0644 INSTALL_MAN = $(INSTALL_DATA) VERSION = 1.10.8 -VDATE = 23 December 2010 +VDATE = 24 December 2010 VFLAGS = -DVERSION="\"$(VERSION)\"" WFLAGS = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings diff --git a/example.style.css b/example.style.css index 7c6374d9..bf616498 100644 --- a/example.style.css +++ b/example.style.css @@ -82,7 +82,7 @@ span.ref-opt { } /* Reference optionals (%O). */ span.ref-page { } /* Reference page (%P). */ span.ref-corp { } /* Reference corporate/foreign author (%Q). */ span.ref-rep { } /* Reference report (%R). */ -u.ref-title { } /* Reference title (%T). */ +span.ref-title { text-decoration: underline; } /* Reference title (%T). */ span.ref-vol { } /* Reference volume (%V). */ span.type { font-style: italic; font-weight: normal; } /* Variable types (Vt). */ span.unix { } /* Unices (Ux, Ox, Nx, Fx, Bx, Bsx, Dx). */ @@ -72,7 +72,6 @@ static const struct htmldata htmltags[TAG_MAX] = { {"pre", HTML_CLRLINE }, /* TAG_PRE */ {"b", 0 }, /* TAG_B */ {"i", 0 }, /* TAG_I */ - {"u", 0 }, /* TAG_U */ {"code", 0 }, /* TAG_CODE */ {"small", 0 }, /* TAG_SMALL */ }; @@ -48,7 +48,6 @@ enum htmltag { TAG_PRE, TAG_B, TAG_I, - TAG_U, TAG_CODE, TAG_SMALL, TAG_MAX @@ -327,7 +327,7 @@ </H1> <DIV CLASS="news"> <P> - <SPAN CLASS="date">23-12-2010</SPAN>: + <SPAN CLASS="date">24-12-2010</SPAN>: version 1.10.8 </P> <P> diff --git a/mdoc_html.c b/mdoc_html.c index fcbcf550..5f077cb9 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1933,7 +1933,6 @@ mdoc__x_pre(MDOC_ARGS) break; case(MDOC__T): PAIR_CLASS_INIT(&tag[0], "ref-title"); - t = TAG_U; break; case(MDOC__U): PAIR_CLASS_INIT(&tag[0], "link-ref"); @@ -91,7 +91,7 @@ span.ref-opt { } /* Reference optionals (%O). */ span.ref-page { } /* Reference page (%P). */ span.ref-corp { } /* Reference corporate/foreign author (%Q). */ span.ref-rep { } /* Reference report (%R). */ -u.ref-title { } /* Reference title (%T). */ +span.ref-title { text-decoration: underline; } /* Reference title (%T). */ span.ref-vol { } /* Reference volume (%V). */ span.type { font-style: italic; font-weight: normal; } /* Variable types (Vt). */ span.unix { } /* Unices (Ux, Ox, Nx, Fx, Bx, Bsx, Dx). */ |