aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.h
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
commitcd60376212be08cbdf5862b0b39179db69535f4f (patch)
treea79e2c10b3483fa3681d5613e6521fd00c6828a2 /html.h
parentd18002b217fb614ceefd63aeb3873baaf718fcf9 (diff)
downloadmandoc-cd60376212be08cbdf5862b0b39179db69535f4f.tar.gz
mandoc-cd60376212be08cbdf5862b0b39179db69535f4f.tar.zst
mandoc-cd60376212be08cbdf5862b0b39179db69535f4f.zip
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.h')
-rw-r--r--html.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/html.h b/html.h
index 1ded39e0..448423a5 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.90 2018/05/25 20:23:51 schwarze Exp $ */
+/* $Id: html.h,v 1.91 2018/06/25 13:45:57 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -31,8 +31,6 @@ enum htmltag {
TAG_BR,
TAG_A,
TAG_TABLE,
- TAG_COLGROUP,
- TAG_COL,
TAG_TR,
TAG_TD,
TAG_LI,