We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb51630 commit 04ef761Copy full SHA for 04ef761
syntax/query.php
@@ -98,14 +98,17 @@ public function renderResultTable($result, Doku_Renderer $R)
98
}
99
100
$R->table_open();
101
+ $R->tablethead_open();
102
$R->tablerow_open();
103
foreach (array_keys($result[0]) as $header) {
104
$R->tableheader_open();
105
$R->cdata($header);
106
$R->tableheader_close();
107
108
$R->tablerow_close();
109
+ $R->tablethead_close();
110
111
+ $R->tabletbody_open();
112
foreach ($result as $row) {
113
114
foreach ($row as $cell) {
@@ -115,6 +118,7 @@ public function renderResultTable($result, Doku_Renderer $R)
115
118
116
119
117
120
121
+ $R->tabletbody_close();
122
$R->table_close();
123
124
0 commit comments