diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-05 18:15:39 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-02-05 18:15:39 +0000 |
commit | 937a6b2e1aa8db0008fce66bcff5f7eab8c29190 (patch) | |
tree | fe39ca4266fd945094576f59b21a545b946b93a4 /html.h | |
parent | 3b0514c192216cd9a089f8c8cc8b846917fa46fe (diff) | |
download | mandoc-937a6b2e1aa8db0008fce66bcff5f7eab8c29190.tar.gz |
Improve <table> syntax:
The <col> element can only appear inside <colgroup>, so use <colgroup>.
The <tbody> element is optional and useless, so don't use it.
Even if we would ever need <thead> or <tfoot>, <tbody> would still be
optional and useless; besides, we will likely never need <thead> or <tfoot>,
simply because our languages don't support such functionality.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ enum htmltag { TAG_BR, TAG_A, TAG_TABLE, - TAG_TBODY, + TAG_COLGROUP, TAG_COL, TAG_TR, TAG_TD, |