diff options
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index c9a72d34..1f53bf51 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -580,6 +580,8 @@ mdoc_sh_pre(MDOC_ARGS) (void)strlcat(link, "_", BUFSIZ); } + /* FIXME: make sure no duplicates! */ + tag[0].key = ATTR_CLASS; tag[0].val = "sec-head"; tag[1].key = ATTR_ID; @@ -636,6 +638,8 @@ mdoc_ss_pre(MDOC_ARGS) buffmt(h, "margin-left: -%dem;", INDENT - HALFINDENT); + /* FIXME: make sure no duplicates! */ + tag[0].key = ATTR_CLASS; tag[0].val = "ssec-head"; tag[1].key = ATTR_STYLE; |