summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-06-25 13:33:04 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-06-25 13:33:04 +0000
commit17ce74870dba4baa99844b39ca2f449d591b3fb5 (patch)
tree93acdae00b03cfc865a450378a516d6dd1880f6b /man_html.c
parentceca0aad422b51d66851e4ee8e6521e30ff86041 (diff)
downloadmandoc-17ce74870dba4baa99844b39ca2f449d591b3fb5.tar.gz
Ignore author-specified indentation for .RS; it harms responsive
design. Use the existing @media-dependent indent instead. This removes the last style= attribute from man(7) output.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c22
1 files changed, 2 insertions, 20 deletions
diff --git a/man_html.c b/man_html.c
index c4253b5f..c1a841d0 100644
--- a/man_html.c
+++ b/man_html.c
@@ -53,8 +53,6 @@ static void print_man_head(const struct roff_meta *,
static void print_man_nodelist(MAN_ARGS);
static void print_man_node(MAN_ARGS);
static int fillmode(struct html *, int);
-static int a2width(const struct roff_node *,
- struct roffsu *);
static int man_B_pre(MAN_ARGS);
static int man_HP_pre(MAN_ARGS);
static int man_IP_pre(MAN_ARGS);
@@ -368,14 +366,6 @@ fillmode(struct html *h, int want)
return had;
}
-static int
-a2width(const struct roff_node *n, struct roffsu *su)
-{
- if (n->type != ROFFT_TEXT)
- return 0;
- return a2roffsu(n->string, su, SCALE_EN) != NULL;
-}
-
static void
man_root_pre(const struct roff_meta *man, struct html *h)
{
@@ -625,18 +615,10 @@ man_ign_pre(MAN_ARGS)
static int
man_RS_pre(MAN_ARGS)
{
- struct roffsu su;
-
if (n->type == ROFFT_HEAD)
return 0;
- else if (n->type == ROFFT_BODY)
- return 1;
-
- SCALE_HS_INIT(&su, INDENT);
- if (n->head->child)
- a2width(n->head->child, &su);
-
- print_otag(h, TAG_DIV, "sul", &su);
+ if (n->type == ROFFT_BLOCK)
+ print_otag(h, TAG_DIV, "c", "Bd-indent");
return 1;
}