diff options
-rw-r--r-- | example.style.css | 2 | ||||
-rw-r--r-- | mdoc_term.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/example.style.css b/example.style.css index fa25d7e6..c989ac37 100644 --- a/example.style.css +++ b/example.style.css @@ -11,7 +11,7 @@ div.ssec-head { font-weight: bold; font-style: normal; } /* Sub-sections (Ss). * div.ssec-body { } div.ssec-block { } -span.addr { } /* Address (Ad). */ +span.addr { font-style: italic; font-weight: normal; } /* Address (Ad). */ span.arg { font-style: italic; font-weight: normal; } /* Command argument (Ar). */ span.author { } /* Author name (An). */ span.bold { font-weight: bold; font-style: normal; } /* Generically bold (SB, BI, IB, BR, RB, B). */ diff --git a/mdoc_term.c b/mdoc_term.c index ef17eaf6..d6fba13d 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -151,7 +151,7 @@ static const struct termact termacts[MDOC_MAX] = { { termp_bl_pre, termp_bl_post }, /* Bl */ { NULL, NULL }, /* El */ { termp_it_pre, termp_it_post }, /* It */ - { NULL, NULL }, /* Ad */ + { termp_under_pre, NULL }, /* Ad */ { termp_an_pre, termp_an_post }, /* An */ { termp_under_pre, NULL }, /* Ar */ { termp_cd_pre, NULL }, /* Cd */ |