diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-06-25 13:45:57 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-06-25 13:45:57 +0000 |
commit | e1b0237d058a55d8d44948a2d1990bded5a80480 (patch) | |
tree | f7e15d0b3a74742cac2996d96a93314da4276dcd /html.c | |
parent | 17ce74870dba4baa99844b39ca2f449d591b3fb5 (diff) | |
download | mandoc-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.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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}, |