diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-05 21:00:43 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-05 21:00:43 +0000 |
commit | 760bab8693f5492d0e193b3084bb863159939fd9 (patch) | |
tree | cf93971c525deeed2442466e7fd346935fd46442 /mdoc_html.c | |
parent | 69ef72fcd27ce81954c7a5afc77a6dcb3069acf8 (diff) | |
download | mandoc-760bab8693f5492d0e193b3084bb863159939fd9.tar.gz |
Wrap .St content in a <span class="St">.
Also add forgotten <span class="Ux"> to .At rendering.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index bcb295be..26b20ed1 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -110,6 +110,7 @@ static int mdoc_skip_pre(MDOC_ARGS); static int mdoc_sm_pre(MDOC_ARGS); static int mdoc_sp_pre(MDOC_ARGS); static int mdoc_ss_pre(MDOC_ARGS); +static int mdoc_st_pre(MDOC_ARGS); static int mdoc_sx_pre(MDOC_ARGS); static int mdoc_sy_pre(MDOC_ARGS); static int mdoc_va_pre(MDOC_ARGS); @@ -155,7 +156,7 @@ static const struct htmlmdoc mdocs[MDOC_MAX] = { {mdoc_ft_pre, NULL}, /* Ot */ {mdoc_pa_pre, NULL}, /* Pa */ {mdoc_ex_pre, NULL}, /* Rv */ - {NULL, NULL}, /* St */ + {mdoc_st_pre, NULL}, /* St */ {mdoc_va_pre, NULL}, /* Va */ {mdoc_vt_pre, NULL}, /* Vt */ {mdoc_xr_pre, NULL}, /* Xr */ @@ -173,7 +174,7 @@ static const struct htmlmdoc mdocs[MDOC_MAX] = { {NULL, NULL}, /* Ac */ {mdoc_quote_pre, mdoc_quote_post}, /* Ao */ {mdoc_quote_pre, mdoc_quote_post}, /* Aq */ - {NULL, NULL}, /* At */ + {mdoc_xx_pre, NULL}, /* At */ {NULL, NULL}, /* Bc */ {mdoc_bf_pre, NULL}, /* Bf */ {mdoc_quote_pre, mdoc_quote_post}, /* Bo */ @@ -895,6 +896,13 @@ mdoc_ex_pre(MDOC_ARGS) } static int +mdoc_st_pre(MDOC_ARGS) +{ + print_otag(h, TAG_SPAN, "c", "St"); + return 1; +} + +static int mdoc_em_pre(MDOC_ARGS) { print_otag(h, TAG_I, "c", "Em"); |