texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * tp/Texinfo/Convert/HTML.pm (_convert_multitable


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/Convert/HTML.pm (_convert_multitable_body_type), tp/init/html32.pm (html32_convert_multitable_body_type): convert multitable_body type as tbody. Report from Kurt Hornik.
Date: Thu, 16 Dec 2021 13:46:05 -0500

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 33a628d  * tp/Texinfo/Convert/HTML.pm (_convert_multitable_body_type), 
tp/init/html32.pm (html32_convert_multitable_body_type): convert 
multitable_body type as tbody.  Report from Kurt Hornik.
33a628d is described below

commit 33a628d53b46c121583165d9de404ba52bd8cf5a
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Thu Dec 16 19:45:54 2021 +0100

    * tp/Texinfo/Convert/HTML.pm (_convert_multitable_body_type),
    tp/init/html32.pm (html32_convert_multitable_body_type):
    convert multitable_body type as tbody.  Report from Kurt Hornik.
---
 ChangeLog                                          |   6 +
 tp/Texinfo/Convert/HTML.pm                         |  16 ++
 tp/init/html32.pm                                  |  17 ++-
 tp/t/results/coverage/multitable.pl                |   6 +-
 tp/t/results/float/complex_float.pl                |   9 +-
 .../verbatim_in_multitable_in_example.pl           |   3 +-
 tp/t/results/multitable/empty_headitem.pl          |   3 +-
 tp/t/results/multitable/empty_item_tab.pl          |   6 +-
 .../inter_item_commands_in_multitable.pl           |   9 +-
 tp/t/results/multitable/multitable_in_example.pl   |   3 +-
 .../multitable/multitable_with_empty_item_tab.pl   |   3 +-
 .../results/multitable/not_letters_in_prototype.pl |   3 +-
 tp/t/results/multitable/paragraph_in_cells.pl      |   3 +-
 tp/t/results/multitable/ref_in_multitable.pl       |   3 +-
 tp/t/results/multitable/w_in_multitable.pl         |   3 +-
 tp/t/results/paragraph/commands_in_flushright.pl   |   3 +-
 .../layout/res_parser/formatting/formatting.html   |  30 ++--
 .../layout/res_parser/formatting_chm/chapter.html  |  18 ++-
 .../res_parser/formatting_chm/formatting.html      |  12 +-
 .../res_parser/formatting_exotic/chapter.html      |  18 ++-
 .../res_parser/formatting_fr_icons/formatting.html |  30 ++--
 .../res_parser/formatting_html/formatting.html     |  30 ++--
 .../formatting_html_no_texi2html/formatting.html   |  18 ++-
 .../res_parser/formatting_html_nodes/chapter.html  |  18 ++-
 .../res_parser/formatting_html_nodes/index.html    |  12 +-
 .../res_parser/formatting_mathjax/formatting.html  |  30 ++--
 .../res_parser/formatting_nodes/chapter.html       |  18 ++-
 .../layout/res_parser/formatting_nodes/index.html  |  12 +-
 .../formatting_regions/formatting_regions.html     |  30 ++--
 .../formatting_weird_quotes/formatting.html        |  30 ++--
 .../nested_cartouche/nested_formats.html           | 165 ++++++++++++++-------
 .../res_parser/nested_deffn/nested_formats.html    | 165 ++++++++++++++-------
 .../nested_enumerate/nested_formats.html           | 165 ++++++++++++++-------
 .../res_parser/nested_example/nested_formats.html  | 165 ++++++++++++++-------
 .../nested_flushright/nested_formats.html          | 165 ++++++++++++++-------
 .../res_parser/nested_group/nested_formats.html    | 165 ++++++++++++++-------
 .../res_parser/nested_itemize/nested_formats.html  | 165 ++++++++++++++-------
 .../res_parser/nested_menu/nested_formats.html     | 165 ++++++++++++++-------
 .../nested_multitable/nested_formats.html          | 165 ++++++++++++++-------
 .../nested_quotation/nested_formats.html           | 165 ++++++++++++++-------
 .../res_parser/nested_table/nested_formats.html    | 165 ++++++++++++++-------
 41 files changed, 1490 insertions(+), 727 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 27edb68..2cbe6c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2021-12-16  Patrice Dumas  <pertusus@free.fr>
 
+       * tp/Texinfo/Convert/HTML.pm (_convert_multitable_body_type),
+       tp/init/html32.pm (html32_convert_multitable_body_type):
+       convert multitable_body type as tbody.  Report from Kurt Hornik.
+
+2021-12-16  Patrice Dumas  <pertusus@free.fr>
+
        * tp/Texinfo/Convert/HTML.pm (_convert_row_type,
        _convert_multitable_head_type), tp/init/html32.pm
        (html32_convert_row_type, html32_convert_multitable_head_type):
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 3f51eb0..e63bf12 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -4338,6 +4338,22 @@ sub _convert_multitable_head_type($$$$) {
 
 $default_types_conversion{'multitable_head'} = \&_convert_multitable_head_type;
 
+sub _convert_multitable_body_type($$$$) {
+  my $self = shift;
+  my $type = shift;
+  my $command = shift;
+  my $content = shift;
+
+  return $content if ($self->in_string());
+  if ($content =~ /\S/) {
+    return '<tbody>' . $content . '</tbody>' . "\n";
+  } else {
+    return '';
+  }
+}
+
+$default_types_conversion{'multitable_body'} = \&_convert_multitable_body_type;
+
 sub _convert_menu_entry_type($$$)
 {
   my $self = shift;
diff --git a/tp/init/html32.pm b/tp/init/html32.pm
index bc372ca..6303599 100644
--- a/tp/init/html32.pm
+++ b/tp/init/html32.pm
@@ -164,7 +164,7 @@ foreach my $explained_command 
(keys(%Texinfo::Common::explained_commands)) {
                               \&html32_convert_explained_command);
 }
 
-# row in multitable. no thead in html 3.2
+# row in multitable. no thead/tbody in html 3.2
 sub html32_convert_multitable_head_type($$$$) {
   my $self = shift;
   my $type = shift;
@@ -180,6 +180,21 @@ sub html32_convert_multitable_head_type($$$$) {
 }
 texinfo_register_type_formatting('multitable_head', 
\&html32_convert_multitable_head_type);
 
+sub html32_convert_multitable_body_type($$$$) {
+  my $self = shift;
+  my $type = shift;
+  my $command = shift;
+  my $content = shift;
+
+  return $content if ($self->in_string());
+  if ($content =~ /\S/) {
+    return $content;
+  } else {
+    return '';
+  }
+}
+texinfo_register_type_formatting('multitable_body', 
\&html32_convert_multitable_body_type);
+
 sub html32_convert_tab_command ($$$$)
 {
   my $self = shift;
diff --git a/tp/t/results/coverage/multitable.pl 
b/tp/t/results/coverage/multitable.pl
index e5b1485..e5e985d 100644
--- a/tp/t/results/coverage/multitable.pl
+++ b/tp/t/results/coverage/multitable.pl
@@ -696,14 +696,16 @@ truc   bidule
 $result_converted{'html_text'}->{'multitable'} = '
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="40%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="40%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="40%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="40%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/float/complex_float.pl 
b/tp/t/results/float/complex_float.pl
index c643306..40e267e 100644
--- a/tp/t/results/float/complex_float.pl
+++ b/tp/t/results/float/complex_float.pl
@@ -4935,8 +4935,9 @@ An example 2.
 
 <p>A multitable 2.
 </p><table>
+<tbody><tr><td>truc 2</td><td>bidule</td></tr>
 <tr><td>truc 2</td><td>bidule</td></tr>
-<tr><td>truc 2</td><td>bidule</td></tr>
+</tbody>
 </table>
 <p>An index entry 2
 </p>
@@ -5005,8 +5006,9 @@ An example.
 
 <p>A multitable.
 </p><table>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
 <tr><td>truc</td><td>bidule</td></tr>
-<tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 <p>An index entry
 <span id="index-float-example-in-caption"></span>
@@ -5056,8 +5058,9 @@ An example 2.
 
 <p>A multitable 2.
 </p><table>
+<tbody><tr><td>truc 2</td><td>bidule</td></tr>
 <tr><td>truc 2</td><td>bidule</td></tr>
-<tr><td>truc 2</td><td>bidule</td></tr>
+</tbody>
 </table>
 <p>An index entry 2
 <span id="index-float-example-in-caption-2"></span>
diff --git a/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl 
b/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
index c405cca..79ba5c3 100644
--- a/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
+++ b/tp/t/results/html_tests/verbatim_in_multitable_in_example.pl
@@ -441,10 +441,11 @@ ul.no-bullet {list-style: none}
 <body lang="en">
 <div class="example">
 <table>
-<tr><td width="50%"><pre class="example">in item</pre></td><td 
width="50%"><pre class="example">in tab</pre></td></tr>
+<tbody><tr><td width="50%"><pre class="example">in item</pre></td><td 
width="50%"><pre class="example">in tab</pre></td></tr>
 <tr><td width="50%"><pre class="verbatim">in first column, verbatim
 </pre></td><td width="50%"><pre class="verbatim">In included file.
 </pre></td></tr>
+</tbody>
 </table>
 </div>
 
diff --git a/tp/t/results/multitable/empty_headitem.pl 
b/tp/t/results/multitable/empty_headitem.pl
index 61acfec..99a4d72 100644
--- a/tp/t/results/multitable/empty_headitem.pl
+++ b/tp/t/results/multitable/empty_headitem.pl
@@ -363,7 +363,8 @@ $result_converted{'plaintext'}->{'empty_headitem'} = '      
  Index   Value
 
 $result_converted{'html_text'}->{'empty_headitem'} = '<table>
 <thead><tr><th width="10%"></th><th width="10%">Index</th><th 
width="10%">Value</th></tr></thead>
-<tr><td width="10%"></td><td width="10%"><code>3</code></td><td 
width="10%"><code>30</code></td></tr>
+<tbody><tr><td width="10%"></td><td width="10%"><code>3</code></td><td 
width="10%"><code>30</code></td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/multitable/empty_item_tab.pl 
b/tp/t/results/multitable/empty_item_tab.pl
index 2abf8e0..a13952d 100644
--- a/tp/t/results/multitable/empty_item_tab.pl
+++ b/tp/t/results/multitable/empty_item_tab.pl
@@ -885,14 +885,15 @@ not empty                            tab not empty
 
 
 $result_converted{'html_text'}->{'empty_item_tab'} = '<table>
-<tr><td width="100%"></td></tr>
+<tbody><tr><td width="100%"></td></tr>
 <tr><td width="100%"></td></tr>
 <tr><td width="100%">text</td></tr>
 <tr><td width="100%"></td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td width="50%"></td></tr>
+<tbody><tr><td width="50%"></td></tr>
 <tr><td width="50%"></td></tr>
 <tr><td width="50%">only item</td></tr>
 <tr><td width="50%">item text</td><td width="50%"></td></tr>
@@ -900,6 +901,7 @@ $result_converted{'html_text'}->{'empty_item_tab'} = 
'<table>
 <tr><td width="50%"></td><td width="50%"></td></tr>
 <tr><td width="50%"></td><td width="50%"></td></tr>
 <tr><td width="50%">not empty</td><td width="50%">tab not empty</td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/multitable/inter_item_commands_in_multitable.pl 
b/tp/t/results/multitable/inter_item_commands_in_multitable.pl
index 9a73726..567d20e 100644
--- a/tp/t/results/multitable/inter_item_commands_in_multitable.pl
+++ b/tp/t/results/multitable/inter_item_commands_in_multitable.pl
@@ -1041,24 +1041,27 @@ thing
 
 
 $result_converted{'html_text'}->{'inter_item_commands_in_multitable'} = 
'<table>
-<tr><td>truc
+<tbody><tr><td>truc
 
 <span id="index-index-entry-between-empty-lines"></span></td></tr>
 <tr><td>trouc</td></tr>
+</tbody>
 </table>
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="40%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="40%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="40%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="40%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
 <tr><td>Title
 <span id="index-cindex"></span></td></tr>
-<tr><td>thing</td></tr>
+<tbody><tr><td>thing</td></tr>
+</tbody>
 </table>
 
 ';
diff --git a/tp/t/results/multitable/multitable_in_example.pl 
b/tp/t/results/multitable/multitable_in_example.pl
index 9d474f1..d7e01e9 100644
--- a/tp/t/results/multitable/multitable_in_example.pl
+++ b/tp/t/results/multitable/multitable_in_example.pl
@@ -402,12 +402,13 @@ $result_converted{'plaintext'}->{'multitable_in_example'} 
= '     truc  bidule e
 
 $result_converted{'html_text'}->{'multitable_in_example'} = '<div 
class="example">
 <table>
-<tr><td><pre class="example">truc</pre></td><td><pre class="example">bidule 
example</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule example</pre></td></tr>
 <tr><td><pre class="example">begin item example
 
 new paragraph in item. example</pre></td><td><pre class="example">begin tab 
example
 
 new paragraph in tab. example</pre></td></tr>
+</tbody>
 </table>
 </div>
 ';
diff --git a/tp/t/results/multitable/multitable_with_empty_item_tab.pl 
b/tp/t/results/multitable/multitable_with_empty_item_tab.pl
index 7807a0e..2f46dae 100644
--- a/tp/t/results/multitable/multitable_with_empty_item_tab.pl
+++ b/tp/t/results/multitable/multitable_with_empty_item_tab.pl
@@ -308,9 +308,10 @@ 
$result_converted{'plaintext'}->{'multitable_with_empty_item_tab'} = '1-1
 
 
 $result_converted{'html_text'}->{'multitable_with_empty_item_tab'} = '<table>
-<tr><td width="30%">1-1</td><td width="70%">1-2</td></tr>
+<tbody><tr><td width="30%">1-1</td><td width="70%">1-2</td></tr>
 <tr><td width="30%"></td><td width="70%"></td></tr>
 <tr><td width="30%">3-1</td><td width="70%">3-2</td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/multitable/not_letters_in_prototype.pl 
b/tp/t/results/multitable/not_letters_in_prototype.pl
index 4391a9b..1434ce0 100644
--- a/tp/t/results/multitable/not_letters_in_prototype.pl
+++ b/tp/t/results/multitable/not_letters_in_prototype.pl
@@ -199,7 +199,8 @@ 
$result_converted{'plaintext'}->{'not_letters_in_prototype'} = '1.3   5-6
 
 
 $result_converted{'html_text'}->{'not_letters_in_prototype'} = '<table>
-<tr><td>1.3</td><td>5-6</td></tr>
+<tbody><tr><td>1.3</td><td>5-6</td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/multitable/paragraph_in_cells.pl 
b/tp/t/results/multitable/paragraph_in_cells.pl
index 4884d08..d0b4cfc 100644
--- a/tp/t/results/multitable/paragraph_in_cells.pl
+++ b/tp/t/results/multitable/paragraph_in_cells.pl
@@ -357,7 +357,7 @@ item. tab.
 
 
 $result_converted{'html_text'}->{'paragraph_in_cells'} = '<table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
 <tr><td>begin item
 
 <p>new paragraph in item.
@@ -365,6 +365,7 @@ $result_converted{'html_text'}->{'paragraph_in_cells'} = 
'<table>
 
 <p>new paragraph in tab.
 </p></td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/multitable/ref_in_multitable.pl 
b/tp/t/results/multitable/ref_in_multitable.pl
index daf9327..ae6bc94 100644
--- a/tp/t/results/multitable/ref_in_multitable.pl
+++ b/tp/t/results/multitable/ref_in_multitable.pl
@@ -698,9 +698,10 @@ $result_converted{'html_text'}->{'ref_in_multitable'} = '
 XXX XXX XXX XXX XXX XXX XXX XXX XX&rsquo;.
 </p>
 <table>
-<tr><td width="35%">XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX</td><td 
width="65%">See &lsquo;RRR RRR RRR RRR RRR RRR RRR RRR RRR 
RRRR&rsquo;.</td></tr>
+<tbody><tr><td width="35%">XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX 
XX</td><td width="65%">See &lsquo;RRR RRR RRR RRR RRR RRR RRR RRR RRR 
RRRR&rsquo;.</td></tr>
 <tr><td width="35%">XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX</td><td 
width="65%">See &lsquo;SSS SSS SSS SSS SSS SSS SSS SSS SSS SSS SSS SSS 
SSSSS&rsquo;.</td></tr>
 <tr><td width="35%">adsf<a id="DOCF1" href="#FOOT1"><sup>1</sup></a></td><td 
width="65%">second column</td></tr>
+</tbody>
 </table>
 
 <p>&lsquo;XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XX XXX XXX XXX XXX 
diff --git a/tp/t/results/multitable/w_in_multitable.pl 
b/tp/t/results/multitable/w_in_multitable.pl
index b4f7e54..97d6581 100644
--- a/tp/t/results/multitable/w_in_multitable.pl
+++ b/tp/t/results/multitable/w_in_multitable.pl
@@ -261,7 +261,8 @@ $result_converted{'plaintext'}->{'w_in_multitable'} = 
'aaaaaaaa bbbbbbbbbbgg
 
 
 $result_converted{'html_text'}->{'w_in_multitable'} = '<table>
-<tr><td>aaaaaaaa&nbsp;bbbbbbbbbb<!-- /@w --></td><td>gg</td></tr>
+<tbody><tr><td>aaaaaaaa&nbsp;bbbbbbbbbb<!-- /@w --></td><td>gg</td></tr>
+</tbody>
 </table>
 ';
 
diff --git a/tp/t/results/paragraph/commands_in_flushright.pl 
b/tp/t/results/paragraph/commands_in_flushright.pl
index 9b8159e..4af00d3 100644
--- a/tp/t/results/paragraph/commands_in_flushright.pl
+++ b/tp/t/results/paragraph/commands_in_flushright.pl
@@ -1573,11 +1573,12 @@ 
$result_converted{'html_text'}->{'commands_in_flushright'} = '
 </dl>
 
 <table>
-<tr><td width="50%">col1</td><td width="50%">col2</td></tr>
+<tbody><tr><td width="50%">col1</td><td width="50%">col2</td></tr>
 <tr><td width="50%">text
 
 <p align="right">in multitable
 </p></td><td width="50%">text col2</td></tr>
+</tbody>
 </table>
 
 <div class="float"><span id="type"></span>
diff --git a/tp/tests/layout/res_parser/formatting/formatting.html 
b/tp/tests/layout/res_parser/formatting/formatting.html
index bc9391e..2f4f0a7 100644
--- a/tp/tests/layout/res_parser/formatting/formatting.html
+++ b/tp/tests/layout/res_parser/formatting/formatting.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3189,14 +3193,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4161,14 +4167,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -5181,15 +5189,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_chm/chapter.html 
b/tp/tests/layout/res_parser/formatting_chm/chapter.html
index 8ab4314..0f446d2 100644
--- a/tp/tests/layout/res_parser/formatting_chm/chapter.html
+++ b/tp/tests/layout/res_parser/formatting_chm/chapter.html
@@ -1194,14 +1194,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2166,14 +2168,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3186,15 +3190,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_chm/formatting.html 
b/tp/tests/layout/res_parser/formatting_chm/formatting.html
index 9f2606e..2d59fd5 100644
--- a/tp/tests/layout/res_parser/formatting_chm/formatting.html
+++ b/tp/tests/layout/res_parser/formatting_chm/formatting.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git a/tp/tests/layout/res_parser/formatting_exotic/chapter.html 
b/tp/tests/layout/res_parser/formatting_exotic/chapter.html
index 632968e..58a7910 100644
--- a/tp/tests/layout/res_parser/formatting_exotic/chapter.html
+++ b/tp/tests/layout/res_parser/formatting_exotic/chapter.html
@@ -1210,14 +1210,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2182,14 +2184,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3202,15 +3206,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.html 
b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.html
index 29c4557..34e24c1 100644
--- a/tp/tests/layout/res_parser/formatting_fr_icons/formatting.html
+++ b/tp/tests/layout/res_parser/formatting_fr_icons/formatting.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3189,14 +3193,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4161,14 +4167,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -5181,15 +5189,17 @@ erreur&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_html/formatting.html 
b/tp/tests/layout/res_parser/formatting_html/formatting.html
index bc9391e..2f4f0a7 100644
--- a/tp/tests/layout/res_parser/formatting_html/formatting.html
+++ b/tp/tests/layout/res_parser/formatting_html/formatting.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3189,14 +3193,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4161,14 +4167,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -5181,15 +5189,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git 
a/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.html 
b/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.html
index 31f6d11..23ad078 100644
--- a/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.html
+++ b/tp/tests/layout/res_parser/formatting_html_no_texi2html/formatting.html
@@ -1249,14 +1249,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2221,14 +2223,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3241,15 +3245,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_html_nodes/chapter.html 
b/tp/tests/layout/res_parser/formatting_html_nodes/chapter.html
index 8226c48..f255f01 100644
--- a/tp/tests/layout/res_parser/formatting_html_nodes/chapter.html
+++ b/tp/tests/layout/res_parser/formatting_html_nodes/chapter.html
@@ -1210,14 +1210,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2182,14 +2184,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3202,15 +3206,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_html_nodes/index.html 
b/tp/tests/layout/res_parser/formatting_html_nodes/index.html
index ece4cf8..fc5ce8f 100644
--- a/tp/tests/layout/res_parser/formatting_html_nodes/index.html
+++ b/tp/tests/layout/res_parser/formatting_html_nodes/index.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git a/tp/tests/layout/res_parser/formatting_mathjax/formatting.html 
b/tp/tests/layout/res_parser/formatting_mathjax/formatting.html
index 2711aae..ee6ff26 100644
--- a/tp/tests/layout/res_parser/formatting_mathjax/formatting.html
+++ b/tp/tests/layout/res_parser/formatting_mathjax/formatting.html
@@ -1197,14 +1197,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2170,14 +2172,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3199,14 +3203,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4171,14 +4177,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -5191,15 +5199,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_nodes/chapter.html 
b/tp/tests/layout/res_parser/formatting_nodes/chapter.html
index 8226c48..f255f01 100644
--- a/tp/tests/layout/res_parser/formatting_nodes/chapter.html
+++ b/tp/tests/layout/res_parser/formatting_nodes/chapter.html
@@ -1210,14 +1210,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2182,14 +2184,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3202,15 +3206,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git a/tp/tests/layout/res_parser/formatting_nodes/index.html 
b/tp/tests/layout/res_parser/formatting_nodes/index.html
index ece4cf8..fc5ce8f 100644
--- a/tp/tests/layout/res_parser/formatting_nodes/index.html
+++ b/tp/tests/layout/res_parser/formatting_nodes/index.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/layout/res_parser/formatting_regions/formatting_regions.html 
b/tp/tests/layout/res_parser/formatting_regions/formatting_regions.html
index cca022c..12db9b4 100644
--- a/tp/tests/layout/res_parser/formatting_regions/formatting_regions.html
+++ b/tp/tests/layout/res_parser/formatting_regions/formatting_regions.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2159,14 +2161,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3165,14 +3169,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4184,15 +4190,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -5255,14 +5263,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.html 
b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.html
index 73fed9a..44ed0f2 100644
--- a/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.html
+++ b/tp/tests/layout/res_parser/formatting_weird_quotes/formatting.html
@@ -1187,14 +1187,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-titlepage-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2160,14 +2162,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3189,14 +3193,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-copying-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4161,14 +4167,16 @@ i&ndash;tem 1
 
 <table>
 <thead><tr><th width="40%">mu&ndash;ltitable headitem</th><th 
width="60%">another tab</th></tr></thead>
-<tr><td width="40%">mu&ndash;ltitable item</td><td width="60%">multitable 
tab</td></tr>
+<tbody><tr><td width="40%">mu&ndash;ltitable item</td><td 
width="60%">multitable tab</td></tr>
 <tr><td width="40%">mu&ndash;ltitable item 2</td><td width="60%">multitable 
tab 2
 <span id="index-index-entry-within-multitable"></span></td></tr>
 <tr><td width="40%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <table>
-<tr><td>truc</td><td>bidule</td></tr>
+<tbody><tr><td>truc</td><td>bidule</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -5181,15 +5189,17 @@ error&rarr; &rarr; - &lowast; -| &rArr;
 
 </pre><table>
 <thead><tr><th width="40%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="60%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="40%"><pre class="example">mu--ltitable item</pre></td><td 
width="60%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="40%"><pre class="example">mu--ltitable 
item</pre></td><td width="60%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="40%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="60%"><pre class="example">multitable tab 2
 <span id="index-index-entry-within-multitable-1"></span></pre></td></tr>
 <tr><td width="40%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
 </pre><table>
-<tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+<tbody><tr><td><pre class="example">truc</pre></td><td><pre 
class="example">bidule</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git 
a/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.html
index 1a7fea4..5dcdf5a 100644
--- a/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_cartouche/nested_formats.html
@@ -110,9 +110,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -158,9 +159,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -252,9 +254,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -300,9 +303,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -395,9 +399,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -443,9 +448,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -536,9 +542,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -584,9 +591,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -678,9 +686,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -726,9 +735,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -822,9 +832,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -870,9 +881,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -963,9 +975,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1011,9 +1024,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1105,9 +1119,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1153,9 +1168,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1194,7 +1210,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1251,9 +1267,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1299,9 +1316,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1391,9 +1409,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1439,9 +1458,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1532,9 +1552,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1580,9 +1601,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1617,6 +1639,7 @@ html
 </div></td></tr></table>
 
 </td></tr></table></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1686,9 +1709,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1745,9 +1769,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1858,9 +1883,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1917,9 +1943,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2031,9 +2058,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2090,9 +2118,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2201,9 +2230,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2249,9 +2279,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2343,9 +2374,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2391,9 +2423,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2488,9 +2521,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2536,9 +2570,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2632,9 +2667,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2680,9 +2716,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2774,9 +2811,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2822,9 +2860,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2917,9 +2956,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2965,9 +3005,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3062,9 +3103,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3110,9 +3152,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3203,9 +3246,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3251,9 +3295,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3344,9 +3389,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3392,9 +3438,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3487,9 +3534,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3535,9 +3583,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3629,9 +3678,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3677,9 +3727,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3770,9 +3821,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3818,9 +3870,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3911,9 +3964,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3959,9 +4013,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.html
index da02d71..987d8c9 100644
--- a/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_deffn/nested_formats.html
@@ -124,9 +124,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -173,9 +174,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -282,9 +284,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -331,9 +334,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -440,9 +444,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -489,9 +494,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -596,9 +602,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -645,9 +652,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -754,9 +762,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -803,9 +812,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -913,9 +923,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -962,9 +973,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1069,9 +1081,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1118,9 +1131,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1227,9 +1241,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1276,9 +1291,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1317,7 +1333,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1388,9 +1404,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1437,9 +1454,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1543,9 +1561,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1592,9 +1611,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1700,9 +1720,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1749,9 +1770,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1786,6 +1808,7 @@ html
 </div></dd></dl>
 
 </dd></dl></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1869,9 +1892,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1929,9 +1953,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2056,9 +2081,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2116,9 +2142,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2245,9 +2272,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2305,9 +2333,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2430,9 +2459,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2479,9 +2509,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2588,9 +2619,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2637,9 +2669,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2748,9 +2781,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2797,9 +2831,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2907,9 +2942,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2956,9 +2992,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3064,9 +3101,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3113,9 +3151,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3223,9 +3262,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3272,9 +3312,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3383,9 +3424,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3432,9 +3474,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3539,9 +3582,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3588,9 +3632,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3696,9 +3741,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3745,9 +3791,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3854,9 +3901,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3903,9 +3951,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4012,9 +4061,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4061,9 +4111,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4168,9 +4219,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4217,9 +4269,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4325,9 +4378,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4374,9 +4428,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.html
index 5cefef6..182562e 100644
--- a/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_enumerate/nested_formats.html
@@ -110,9 +110,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -158,9 +159,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -252,9 +254,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -300,9 +303,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -395,9 +399,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -443,9 +448,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -536,9 +542,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -584,9 +591,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -678,9 +686,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -726,9 +735,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -822,9 +832,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -870,9 +881,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -963,9 +975,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1011,9 +1024,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1105,9 +1119,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1153,9 +1168,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1194,7 +1210,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1251,9 +1267,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1299,9 +1316,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1391,9 +1409,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1439,9 +1458,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1532,9 +1552,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1580,9 +1601,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1617,6 +1639,7 @@ html
 </div></li></ol>
 
 </li></ol></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1686,9 +1709,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1745,9 +1769,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1858,9 +1883,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1917,9 +1943,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2031,9 +2058,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2090,9 +2118,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2201,9 +2230,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2249,9 +2279,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2343,9 +2374,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2391,9 +2423,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2488,9 +2521,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2536,9 +2570,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2632,9 +2667,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2680,9 +2716,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2774,9 +2811,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2822,9 +2860,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2917,9 +2956,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2965,9 +3005,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3062,9 +3103,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3110,9 +3152,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3203,9 +3246,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3251,9 +3295,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3344,9 +3389,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3392,9 +3438,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3487,9 +3534,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3535,9 +3583,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3629,9 +3678,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3677,9 +3727,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3770,9 +3821,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3818,9 +3870,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3911,9 +3964,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3959,9 +4013,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_example/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_example/nested_formats.html
index 9fd89fe..c8b32f1 100644
--- a/tp/tests/nested_formats/res_parser/nested_example/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_example/nested_formats.html
@@ -110,9 +110,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -160,9 +161,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -272,9 +274,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -331,9 +334,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -435,9 +439,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -485,9 +490,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -586,9 +592,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -636,9 +643,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -748,9 +756,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -807,9 +816,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -912,9 +922,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -962,9 +973,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1063,9 +1075,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1113,9 +1126,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1225,9 +1239,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1284,9 +1299,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1334,7 +1350,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1391,9 +1407,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1441,9 +1458,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1541,9 +1559,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1591,9 +1610,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1702,9 +1722,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1761,9 +1782,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1807,6 +1829,7 @@ html
 <pre class="example">
 
 </pre></div></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1876,9 +1899,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1935,9 +1959,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2048,9 +2073,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2107,9 +2133,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2221,9 +2248,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2280,9 +2308,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2391,9 +2420,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2441,9 +2471,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2553,9 +2584,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2612,9 +2644,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2718,9 +2751,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2768,9 +2802,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2872,9 +2907,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2922,9 +2958,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3024,9 +3061,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3074,9 +3112,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3187,9 +3226,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3246,9 +3286,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3352,9 +3393,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3402,9 +3444,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3503,9 +3546,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3553,9 +3597,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3664,9 +3709,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3723,9 +3769,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3827,9 +3874,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3877,9 +3925,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -3989,9 +4038,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -4048,9 +4098,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -4150,9 +4201,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4200,9 +4252,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -4311,9 +4364,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -4370,9 +4424,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
diff --git 
a/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.html
index 4b52b24..802b4a9 100644
--- a/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_flushright/nested_formats.html
@@ -100,9 +100,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -147,9 +148,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -229,9 +231,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -276,9 +279,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -359,9 +363,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -406,9 +411,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -488,9 +494,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -535,9 +542,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -617,9 +625,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -664,9 +673,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -748,9 +758,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -795,9 +806,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -877,9 +889,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -924,9 +937,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1006,9 +1020,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1053,9 +1068,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1092,7 +1108,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1139,9 +1155,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1186,9 +1203,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1268,9 +1286,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1315,9 +1334,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1397,9 +1417,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1444,9 +1465,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1479,6 +1501,7 @@ html
 </p>
 <div align="center">ce&ndash;ntered line
 </div></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1538,9 +1561,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1596,9 +1620,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1698,9 +1723,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1756,9 +1782,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1858,9 +1885,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1916,9 +1944,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2015,9 +2044,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2062,9 +2092,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2144,9 +2175,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2191,9 +2223,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2276,9 +2309,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2323,9 +2357,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2408,9 +2443,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2455,9 +2491,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2538,9 +2575,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2585,9 +2623,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2668,9 +2707,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2715,9 +2755,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2800,9 +2841,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2847,9 +2889,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2929,9 +2972,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2976,9 +3020,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3057,9 +3102,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3104,9 +3150,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3187,9 +3234,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3234,9 +3282,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3316,9 +3365,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3363,9 +3413,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3444,9 +3495,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3491,9 +3543,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3572,9 +3625,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3619,9 +3673,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_group/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_group/nested_formats.html
index bd73be6..89bcc65 100644
--- a/tp/tests/nested_formats/res_parser/nested_group/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_group/nested_formats.html
@@ -100,9 +100,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -147,9 +148,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -229,9 +231,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -276,9 +279,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -359,9 +363,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -406,9 +411,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -488,9 +494,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -535,9 +542,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -617,9 +625,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -664,9 +673,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -748,9 +758,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -795,9 +806,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -877,9 +889,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -924,9 +937,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1006,9 +1020,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1053,9 +1068,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1092,7 +1108,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1139,9 +1155,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1186,9 +1203,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1268,9 +1286,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1315,9 +1334,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1397,9 +1417,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1444,9 +1465,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1479,6 +1501,7 @@ html
 </p>
 <div align="center">ce&ndash;ntered line
 </div></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1538,9 +1561,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1596,9 +1620,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1698,9 +1723,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1756,9 +1782,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1858,9 +1885,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1916,9 +1944,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2015,9 +2044,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2062,9 +2092,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2144,9 +2175,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2191,9 +2223,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2276,9 +2309,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2323,9 +2357,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2408,9 +2443,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2455,9 +2491,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2538,9 +2575,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2585,9 +2623,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2668,9 +2707,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2715,9 +2755,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2800,9 +2841,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2847,9 +2889,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2929,9 +2972,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2976,9 +3020,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3057,9 +3102,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3104,9 +3150,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3187,9 +3234,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3234,9 +3282,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3316,9 +3365,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3363,9 +3413,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3444,9 +3495,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3491,9 +3543,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3572,9 +3625,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3619,9 +3673,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.html
index 3d65de3..36009cb 100644
--- a/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_itemize/nested_formats.html
@@ -116,9 +116,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -164,9 +165,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -264,9 +266,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -312,9 +315,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -413,9 +417,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -461,9 +466,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -560,9 +566,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -608,9 +615,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -708,9 +716,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -756,9 +765,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -858,9 +868,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -906,9 +917,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1005,9 +1017,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1053,9 +1066,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1153,9 +1167,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1201,9 +1216,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1242,7 +1258,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1305,9 +1321,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1353,9 +1370,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1451,9 +1469,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1499,9 +1518,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1598,9 +1618,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1646,9 +1667,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1683,6 +1705,7 @@ html
 </div></li></ul>
 
 </li></ul></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1758,9 +1781,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1817,9 +1841,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1936,9 +1961,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1995,9 +2021,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2115,9 +2142,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2174,9 +2202,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2291,9 +2320,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2339,9 +2369,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2439,9 +2470,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2487,9 +2519,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2590,9 +2623,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2638,9 +2672,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2740,9 +2775,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2788,9 +2824,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2888,9 +2925,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2936,9 +2974,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3037,9 +3076,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3085,9 +3125,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3188,9 +3229,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3236,9 +3278,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3335,9 +3378,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3383,9 +3427,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3482,9 +3527,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3530,9 +3576,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3631,9 +3678,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3679,9 +3727,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3779,9 +3828,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3827,9 +3877,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3926,9 +3977,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3974,9 +4026,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4073,9 +4126,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4121,9 +4175,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git a/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.html
index 135e4ed..8666b7b 100644
--- a/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_menu/nested_formats.html
@@ -110,9 +110,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -160,9 +161,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -272,9 +274,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -331,9 +334,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -435,9 +439,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -485,9 +490,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -586,9 +592,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -636,9 +643,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -748,9 +756,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -807,9 +816,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -912,9 +922,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -962,9 +973,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1063,9 +1075,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1113,9 +1126,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1225,9 +1239,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1284,9 +1299,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1334,7 +1350,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1391,9 +1407,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1441,9 +1458,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1541,9 +1559,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1591,9 +1610,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1702,9 +1722,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1761,9 +1782,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -1807,6 +1829,7 @@ html
 <tr><th colspan="3" align="left" valign="top"><pre class="menu-comment">
 
 </pre></th></tr></table></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1876,9 +1899,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1935,9 +1959,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu--ltitable item</pre></td><td 
width="70%"><pre class="menu-comment">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu--ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu--ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu--ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2048,9 +2073,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2107,9 +2133,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu--ltitable item</pre></td><td 
width="70%"><pre class="menu-comment">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu--ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu--ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu--ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2221,9 +2248,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-preformatted">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="menu-preformatted">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-preformatted">mu--ltitable 
item</pre></td><td width="70%"><pre class="menu-preformatted">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-preformatted">mu--ltitable 
item</pre></td><td width="70%"><pre class="menu-preformatted">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-preformatted">mu--ltitable item 
2</pre></td><td width="70%"><pre class="menu-preformatted">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-preformatted">lone mu--ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-preformatted">
 
@@ -2280,9 +2308,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu--ltitable item</pre></td><td 
width="70%"><pre class="menu-comment">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu--ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu--ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu--ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2391,9 +2420,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2441,9 +2471,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2553,9 +2584,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2612,9 +2644,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2718,9 +2751,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2768,9 +2802,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -2872,9 +2907,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2922,9 +2958,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3024,9 +3061,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3074,9 +3112,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3187,9 +3226,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3246,9 +3286,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3352,9 +3393,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3402,9 +3444,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3503,9 +3546,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3553,9 +3597,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3664,9 +3709,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3723,9 +3769,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3827,9 +3874,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3877,9 +3925,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -3989,9 +4038,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -4048,9 +4098,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -4150,9 +4201,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4200,9 +4252,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -4311,9 +4364,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
@@ -4370,9 +4424,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="menu-comment">mu&ndash;ltitable 
headitem</pre></th><th width="70%"><pre class="menu-comment">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable 
item</pre></td><td width="70%"><pre class="menu-comment">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">mu&ndash;ltitable item 
2</pre></td><td width="70%"><pre class="menu-comment">multitable tab 
2</pre></td></tr>
 <tr><td width="60%"><pre class="menu-comment">lone mu&ndash;ltitable 
item</pre></td></tr>
+</tbody>
 </table>
 <pre class="menu-comment">
 
diff --git 
a/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.html
index 20a542b..b339188 100644
--- a/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_multitable/nested_formats.html
@@ -110,9 +110,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -158,9 +159,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -253,9 +255,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -301,9 +304,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -396,9 +400,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -444,9 +449,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -538,9 +544,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -586,9 +593,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -681,9 +689,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -729,9 +738,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -825,9 +835,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -873,9 +884,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -967,9 +979,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1015,9 +1028,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1110,9 +1124,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1158,9 +1173,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1199,7 +1215,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1256,9 +1272,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1304,9 +1321,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1397,9 +1415,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1445,9 +1464,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1539,9 +1559,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1587,9 +1608,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1624,6 +1646,7 @@ html
 </div></td></tr>
 </table></td></tr>
 </table></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1693,9 +1716,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1747,9 +1771,10 @@ html
 </pre></li></ol>
 <pre class="example"></pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example"></pre><div class="example">
 <pre class="example">e--xample  some
@@ -1845,9 +1870,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1899,9 +1925,10 @@ html
 </pre></li></ol>
 <pre class="example"></pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example"></pre><div class="example">
 <pre class="example">e--xample  some
@@ -1963,9 +1990,10 @@ Something2</pre><table>
 </pre></li></ol>
 <pre class="example"></pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example"></pre><div class="example">
 <pre class="example">e--xample  some
@@ -1999,9 +2027,10 @@ Something2</pre><table>
 </pre></li></ol>
 <pre class="example"></pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example"></pre><div class="example">
 <pre class="example">e--xample  some
@@ -2094,9 +2123,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2142,9 +2172,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2237,9 +2268,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2285,9 +2317,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2382,9 +2415,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2430,9 +2464,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2527,9 +2562,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2575,9 +2611,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2670,9 +2707,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2718,9 +2756,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2814,9 +2853,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2862,9 +2902,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2959,9 +3000,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3007,9 +3049,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3101,9 +3144,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3149,9 +3193,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3243,9 +3288,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3291,9 +3337,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3386,9 +3433,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3434,9 +3482,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3529,9 +3578,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3577,9 +3627,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3670,9 +3721,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3718,9 +3770,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3812,9 +3865,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3860,9 +3914,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.html
index d0c7d87..47d67fe 100644
--- a/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_quotation/nested_formats.html
@@ -116,9 +116,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -164,9 +165,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -264,9 +266,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -312,9 +315,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -413,9 +417,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -461,9 +466,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -560,9 +566,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -608,9 +615,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -708,9 +716,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -756,9 +765,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -858,9 +868,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -906,9 +917,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1005,9 +1017,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1053,9 +1066,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1153,9 +1167,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1201,9 +1216,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1242,7 +1258,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1305,9 +1321,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1353,9 +1370,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1451,9 +1469,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1499,9 +1518,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1598,9 +1618,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1646,9 +1667,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1683,6 +1705,7 @@ html
 </div></blockquote>
 
 </blockquote></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1758,9 +1781,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1817,9 +1841,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1936,9 +1961,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1995,9 +2021,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2115,9 +2142,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2174,9 +2202,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2291,9 +2320,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2339,9 +2369,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2439,9 +2470,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2487,9 +2519,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2590,9 +2623,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2638,9 +2672,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2740,9 +2775,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2788,9 +2824,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2888,9 +2925,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2936,9 +2974,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3037,9 +3076,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3085,9 +3125,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3188,9 +3229,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3236,9 +3278,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3335,9 +3378,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3383,9 +3427,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3482,9 +3527,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3530,9 +3576,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3631,9 +3678,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3679,9 +3727,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3779,9 +3828,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3827,9 +3877,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3926,9 +3977,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3974,9 +4026,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4073,9 +4126,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4121,9 +4175,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
diff --git 
a/tp/tests/nested_formats/res_parser/nested_table/nested_formats.html 
b/tp/tests/nested_formats/res_parser/nested_table/nested_formats.html
index c9f4d66..bc14c1c 100644
--- a/tp/tests/nested_formats/res_parser/nested_table/nested_formats.html
+++ b/tp/tests/nested_formats/res_parser/nested_table/nested_formats.html
@@ -115,9 +115,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -163,9 +164,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -263,9 +265,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -311,9 +314,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -413,9 +417,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -461,9 +466,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -560,9 +566,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -608,9 +615,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -708,9 +716,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -756,9 +765,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -859,9 +869,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -907,9 +918,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1006,9 +1018,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1054,9 +1067,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1154,9 +1168,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1202,9 +1217,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1245,7 +1261,7 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">multitable item</td><td width="70%">multitable tab. And 
after Call macro in mutitable
+<tbody><tr><td width="60%">multitable item</td><td width="70%">multitable tab. 
And after Call macro in mutitable
 after item</td></tr>
 <tr><td width="60%">in macro
 
@@ -1307,9 +1323,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1355,9 +1372,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1453,9 +1471,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1501,9 +1520,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1600,9 +1620,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1648,9 +1669,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -1687,6 +1709,7 @@ html
 
 </dd>
 </dl></td></tr>
+</tbody>
 </table>
 
 <p>call macro at the example beginning
@@ -1761,9 +1784,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1820,9 +1844,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1939,9 +1964,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -1998,9 +2024,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2118,9 +2145,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2177,9 +2205,10 @@ html
 
 </pre><table>
 <thead><tr><th width="60%"><pre class="example">mu--ltitable 
headitem</pre></th><th width="70%"><pre class="example">another 
tab</pre></th></tr></thead>
-<tr><td width="60%"><pre class="example">mu--ltitable item</pre></td><td 
width="70%"><pre class="example">multitable tab</pre></td></tr>
+<tbody><tr><td width="60%"><pre class="example">mu--ltitable 
item</pre></td><td width="70%"><pre class="example">multitable 
tab</pre></td></tr>
 <tr><td width="60%"><pre class="example">mu--ltitable item 2</pre></td><td 
width="70%"><pre class="example">multitable tab 2</pre></td></tr>
 <tr><td width="60%"><pre class="example">lone mu--ltitable item</pre></td></tr>
+</tbody>
 </table>
 <pre class="example">
 
@@ -2295,9 +2324,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2343,9 +2373,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2443,9 +2474,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2491,9 +2523,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2595,9 +2628,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2643,9 +2677,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2745,9 +2780,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2793,9 +2829,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2893,9 +2930,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -2941,9 +2979,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3042,9 +3081,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3090,9 +3130,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3194,9 +3235,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3242,9 +3284,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3341,9 +3384,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3389,9 +3433,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3488,9 +3533,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3536,9 +3582,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3638,9 +3685,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3686,9 +3734,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3786,9 +3835,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3834,9 +3884,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3934,9 +3985,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -3982,9 +4034,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4081,9 +4134,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">
@@ -4129,9 +4183,10 @@ html
 
 <table>
 <thead><tr><th width="60%">mu&ndash;ltitable headitem</th><th 
width="70%">another tab</th></tr></thead>
-<tr><td width="60%">mu&ndash;ltitable item</td><td width="70%">multitable 
tab</td></tr>
+<tbody><tr><td width="60%">mu&ndash;ltitable item</td><td 
width="70%">multitable tab</td></tr>
 <tr><td width="60%">mu&ndash;ltitable item 2</td><td width="70%">multitable 
tab 2</td></tr>
 <tr><td width="60%">lone mu&ndash;ltitable item</td></tr>
+</tbody>
 </table>
 
 <div class="example">



reply via email to

[Prev in Thread] Current Thread [Next in Thread]