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 | 4f34330fb0a802696f65a01bb76adb3a50a5be04 (patch) | |
| tree | e8e2cdd0f21c5cebc42e91ae26754639ce25dc63 /mdoc_html.c | |
| parent | 0e5383c76b7cc42f9b8d9cd2a6554c2caf6361b2 (diff) | |
| download | mandoc-4f34330fb0a802696f65a01bb76adb3a50a5be04.tar.gz mandoc-4f34330fb0a802696f65a01bb76adb3a50a5be04.zip | |
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 | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index f496483b..bd434000 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.268 2017/02/05 20:34:57 schwarze Exp $ */ +/* $Id: mdoc_html.c,v 1.269 2017/02/05 21:00:43 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -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"); |
