summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-06-25 13:45:57 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-06-25 13:45:57 +0000
commite1b0237d058a55d8d44948a2d1990bded5a80480 (patch)
treef7e15d0b3a74742cac2996d96a93314da4276dcd /html.c
parent17ce74870dba4baa99844b39ca2f449d591b3fb5 (diff)
downloadmandoc-e1b0237d058a55d8d44948a2d1990bded5a80480.tar.gz
Do not write <colgroup> elements. Their only purpose is to enforce
author-specified column widths, which can harm responsive design and provide no real benefit: HTML rendering engines usually do just fine automatically selecting appropriate column widths.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/html.c b/html.c
index 620d00b9..818c41b4 100644
--- a/html.c
+++ b/html.c
@@ -69,8 +69,6 @@ static const struct htmldata htmltags[TAG_MAX] = {
{"br", HTML_NOSTACK | HTML_AUTOCLOSE | HTML_NLALL},
{"a", 0},
{"table", HTML_NLALL | HTML_INDENT},
- {"colgroup", HTML_NLALL | HTML_INDENT},
- {"col", HTML_NOSTACK | HTML_AUTOCLOSE | HTML_NLALL},
{"tr", HTML_NLALL | HTML_INDENT},
{"td", HTML_NLAROUND},
{"li", HTML_NLAROUND | HTML_INDENT},