aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--html.c6
-rw-r--r--mdoc_html.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/html.c b/html.c
index 28be3015..babe237c 100644
--- a/html.c
+++ b/html.c
@@ -1,7 +1,7 @@
-/* $Id: html.c,v 1.262 2020/01/19 18:02:00 schwarze Exp $ */
+/* $Id: html.c,v 1.263 2020/02/27 22:28:13 schwarze Exp $ */
/*
* 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 e6d57a11..65bd8e03 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.334 2020/02/27 01:43:52 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.335 2020/02/27 22:28:13 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014-2020 Ingo Schwarze <schwarze@openbsd.org>
@@ -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;
}