aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-08-14 00:31:43 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-08-14 00:31:43 +0000
commit3b9ecd40b6ed9cef16a4ce87cfc12713cd7c97e9 (patch)
treed639fc4ebeb49b6248f31790a827858216e0562b /html.c
parent438eebf7ec01fbc8167f69287d4b4ab43d49e8d8 (diff)
downloadmandoc-3b9ecd40b6ed9cef16a4ce87cfc12713cd7c97e9.tar.gz
mandoc-3b9ecd40b6ed9cef16a4ce87cfc12713cd7c97e9.tar.zst
mandoc-3b9ecd40b6ed9cef16a4ce87cfc12713cd7c97e9.zip
Revert previous, as requested by kristaps@.
The .Bf block can contain subblocks, so it has to render as an element that can contain flow content. But <em> cannot contain flow content, only phrasing content. Rendering .Em and .Bf differently would by unfortunate, and closing out .Bf before subblocks and re-opening it afterwards would merely complicate both the C code of the program and the generated HTML code. Besides, converting .Em to semantic HTML markup would require some content to be put into <em> and some into <i>, but we cannot automatically distinguish which is which, so strictly speaking, we can't use semantic HTML here but have to fall back to physical markup. Wonders of HTML...
Diffstat (limited to 'html.c')
-rw-r--r--html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/html.c b/html.c
index 056d287f..d0c6f30a 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.162 2014/08/13 20:34:29 kristaps Exp $ */
+/* $Id: html.c,v 1.163 2014/08/14 00:31:43 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -74,7 +74,6 @@ static const struct htmldata htmltags[TAG_MAX] = {
{"i", 0 }, /* TAG_I */
{"code", 0 }, /* TAG_CODE */
{"small", 0 }, /* TAG_SMALL */
- {"em", 0 }, /* TAG_EM */
};
static const char *const htmlattrs[ATTR_MAX] = {