summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--html.c4
-rw-r--r--mdoc_html.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/html.c b/html.c
index 478f126b..05a5c902 100644
--- a/html.c
+++ b/html.c
@@ -1,7 +1,7 @@
/* $Id$ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2011-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2011-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -88,7 +88,7 @@ static const struct htmldata htmltags[TAG_MAX] = {
{"span", HTML_INPHRASE | HTML_TOPHRASE},
{"var", HTML_INPHRASE | HTML_TOPHRASE},
{"br", HTML_INPHRASE | HTML_NOSTACK | HTML_NLALL},
- {"mark", HTML_INPHRASE | HTML_NOSTACK },
+ {"mark", HTML_INPHRASE },
{"math", HTML_INPHRASE | HTML_NLALL | HTML_INDENT},
{"mrow", 0},
{"mi", 0},
diff --git a/mdoc_html.c b/mdoc_html.c
index bc50720f..5f3973ef 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -731,7 +731,7 @@ mdoc_tg_pre(MDOC_ARGS)
char *id;
if ((id = html_make_id(n, 1)) != NULL)
- print_otag(h, TAG_MARK, "i", id);
+ print_tagq(h, print_otag(h, TAG_MARK, "i", id));
return 0;
}