aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/style.css
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-08-13 15:25:22 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-08-13 15:25:22 +0000
commit08b7f86267663883d71e98c502652ec334c232bc (patch)
tree0abce60889668c8d52f51d9f27148ca85a77beec /style.css
parentfaf800341f0f487ab0edd954fb2a6e0eddb2db96 (diff)
downloadmandoc-08b7f86267663883d71e98c502652ec334c232bc.tar.gz
mandoc-08b7f86267663883d71e98c502652ec334c232bc.tar.zst
mandoc-08b7f86267663883d71e98c502652ec334c232bc.zip
Use <em> for .Em and .Bf -emphasis.
The vast majority of .Em in real-world manuals is stress emphasis, for which <em> is the correct markup. Admittedly, there are some instances of .Em usage for alternate quality, for which <i> would be a better match. Most of these are technical terms that neither allow semantic markup nor are keywords - for the latter, .Sy would be preferable. A typical example is that the shell breaks input into .Em words . Alternate voice or mood, which would also require <i>, is almost absent from manuals. We cannot satisfy both stress emphasis and alternate quality, so pick the one that fits more often and looks less wrong when off. Patch from Guy Harris <guy at alum dot mit dot edu>. ok joerg@ bentley@
Diffstat (limited to 'style.css')
-rw-r--r--style.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/style.css b/style.css
index ee891f41..ba0d33df 100644
--- a/style.css
+++ b/style.css
@@ -1,4 +1,4 @@
-/* $Id: style.css,v 1.25 2011/08/26 09:03:17 kristaps Exp $ */
+/* $Id: style.css,v 1.26 2014/08/13 15:25:22 schwarze Exp $ */
/*
* This is an example style-sheet provided for mandoc(1) and the -Thtml
@@ -34,7 +34,7 @@ td.head-rtitle { width: 10%; text-align: right; } /* Document header: right-titl
/* General font modes. */
i { } /* Italic: BI, IB, I, (implicit). */
-.emph { font-style: italic; font-weight: normal; } /* Emphasis: Em, Bl -emphasis. */
+em { font-style: italic; font-weight: normal; } /* Emphasis: Em, Bl -emphasis. */
b { } /* Bold: SB, BI, IB, BR, RB, B, (implicit). */
.symb { font-style: normal; font-weight: bold; } /* Symbolic: Sy, Ms, Bf -symbolic. */
small { } /* Small: SB, SM. */