aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tbl_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-02-05 18:15:39 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-02-05 18:15:39 +0000
commitc6e62f9888a3bce6f8b3f7a4ee028dbdfc01ab1f (patch)
tree5b001c4f9597be2aa5b561fe3d2bd93dae2735ec /tbl_html.c
parent917cc472b6d91e5bac0a2f3cdf26e113a64ecd45 (diff)
downloadmandoc-c6e62f9888a3bce6f8b3f7a4ee028dbdfc01ab1f.tar.gz
mandoc-c6e62f9888a3bce6f8b3f7a4ee028dbdfc01ab1f.tar.zst
mandoc-c6e62f9888a3bce6f8b3f7a4ee028dbdfc01ab1f.zip
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 'tbl_html.c')
-rw-r--r--tbl_html.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tbl_html.c b/tbl_html.c
index 962d900e..4dff2937 100644
--- a/tbl_html.c
+++ b/tbl_html.c
@@ -1,4 +1,4 @@
-/* $Id: tbl_html.c,v 1.19 2017/01/17 01:47:51 schwarze Exp $ */
+/* $Id: tbl_html.c,v 1.20 2017/02/05 18:15:39 schwarze Exp $ */
/*
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -50,6 +50,7 @@ html_tbl_strlen(const char *p, void *arg)
static void
html_tblopen(struct html *h, const struct tbl_span *sp)
{
+ struct tag *t;
int ic;
if (h->tbl.cols == NULL) {
@@ -61,10 +62,10 @@ html_tblopen(struct html *h, const struct tbl_span *sp)
assert(NULL == h->tblt);
h->tblt = print_otag(h, TAG_TABLE, "c", "tbl");
+ t = print_otag(h, TAG_COLGROUP, "");
for (ic = 0; ic < sp->opts->cols; ic++)
print_otag(h, TAG_COL, "shw", h->tbl.cols[ic].width);
-
- print_otag(h, TAG_TBODY, "");
+ print_tagq(h, t);
}
void