summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--example.style.css2
-rw-r--r--html.c1
-rw-r--r--html.h1
-rw-r--r--index.sgml2
-rw-r--r--mdoc_html.c1
-rw-r--r--style.css2
7 files changed, 4 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 7fa0cde1..fd8fd16e 100644
--- a/Makefile
+++ b/Makefile
@@ -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). */
diff --git a/html.c b/html.c
index 75b66f4c..98ce7735 100644
--- a/html.c
+++ b/html.c
@@ -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 */
};
diff --git a/html.h b/html.h
index 5072c8b3..2a955115 100644
--- a/html.h
+++ b/html.h
@@ -48,7 +48,6 @@ enum htmltag {
TAG_PRE,
TAG_B,
TAG_I,
- TAG_U,
TAG_CODE,
TAG_SMALL,
TAG_MAX
diff --git a/index.sgml b/index.sgml
index 49e27e48..92892b02 100644
--- a/index.sgml
+++ b/index.sgml
@@ -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");
diff --git a/style.css b/style.css
index c592fa84..45d9061d 100644
--- a/style.css
+++ b/style.css
@@ -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). */