Make small HTML tweaks that are required for KMP. There is no visible difference in the staged docs with these changes.

tbody class=list is required for filtering behavior
colspan=100% allows for tables of varying number of columns

BUG: 237085294
Change-Id: I91c4c3e0bebf404a960116875244896b2b658df6
diff --git a/src/main/java/com/google/devsite/components/impl/DefaultInheritedSymbols.kt b/src/main/java/com/google/devsite/components/impl/DefaultInheritedSymbols.kt
index a397087..05e61a3 100644
--- a/src/main/java/com/google/devsite/components/impl/DefaultInheritedSymbols.kt
+++ b/src/main/java/com/google/devsite/components/impl/DefaultInheritedSymbols.kt
@@ -44,7 +44,7 @@
                         }
                     }
 
-                    tbody {
+                    tbody(classes = "list") {
                         for (item in data.inheritedSymbolSummaries) {
                             tr {
                                 td {
diff --git a/src/main/java/com/google/devsite/components/impl/DefaultSummaryList.kt b/src/main/java/com/google/devsite/components/impl/DefaultSummaryList.kt
index 66dec29..50efb8f 100644
--- a/src/main/java/com/google/devsite/components/impl/DefaultSummaryList.kt
+++ b/src/main/java/com/google/devsite/components/impl/DefaultSummaryList.kt
@@ -42,7 +42,7 @@
                     }
                 }
 
-                tbody {
+                tbody(classes = "list") {
                     for (item in data.items) {
                         tr {
                             item.render(this)
diff --git a/src/main/java/com/google/devsite/components/impl/DefaultTableTitle.kt b/src/main/java/com/google/devsite/components/impl/DefaultTableTitle.kt
index 44dcba2..62a0542 100644
--- a/src/main/java/com/google/devsite/components/impl/DefaultTableTitle.kt
+++ b/src/main/java/com/google/devsite/components/impl/DefaultTableTitle.kt
@@ -27,7 +27,7 @@
 ) : TableTitle {
     override fun render(into: TR) = into.run {
         th {
-            attributes["colspan"] = "2"
+            attributes["colspan"] = "100%"
 
             if (data.big) {
                 // TODO(b/164125463): th isn't flow content :(
diff --git a/src/test/java/com/google/devsite/components/impl/DefaultInheritedSymbolsTest.kt b/src/test/java/com/google/devsite/components/impl/DefaultInheritedSymbolsTest.kt
index 5ea536b..4fca7b0 100644
--- a/src/test/java/com/google/devsite/components/impl/DefaultInheritedSymbolsTest.kt
+++ b/src/test/java/com/google/devsite/components/impl/DefaultInheritedSymbolsTest.kt
@@ -65,15 +65,15 @@
                     <table class="responsive" id="inhmethods">
                       <thead>
                         <tr>
-                          <th colspan="2"><h3>Inherited Methods</h3></th>
+                          <th colspan="100%"><h3>Inherited Methods</h3></th>
                         </tr>
                       </thead>
-                      <tbody>
+                      <tbody class="list">
                         <tr>
                           <td><devsite-expandable><span class="expand-control">From class aClass</span>
                             <div class="devsite-table-wrapper">
                               <table class="responsive">
-                                <tbody>
+                                <tbody class="list">
                                   <tr><noop/></tr>
                                   <tr><noop/></tr>
                                 </tbody>
diff --git a/src/test/java/com/google/devsite/components/impl/DefaultPackageSummaryTest.kt b/src/test/java/com/google/devsite/components/impl/DefaultPackageSummaryTest.kt
index 19fc692..619cc60 100644
--- a/src/test/java/com/google/devsite/components/impl/DefaultPackageSummaryTest.kt
+++ b/src/test/java/com/google/devsite/components/impl/DefaultPackageSummaryTest.kt
@@ -140,7 +140,7 @@
   <h2>Classes</h2>
   <div class="devsite-table-wrapper">
     <table class="responsive">
-      <tbody>
+      <tbody class="list">
         <tr><noop/></tr>
       </tbody>
     </table>
@@ -148,7 +148,7 @@
   <h2>Objects</h2>
   <div class="devsite-table-wrapper">
     <table class="responsive">
-      <tbody>
+      <tbody class="list">
         <tr><noop/></tr>
       </tbody>
     </table>
@@ -161,7 +161,7 @@
   <h2>Classes</h2>
   <div class="devsite-table-wrapper">
     <table class="responsive">
-      <tbody>
+      <tbody class="list">
         <tr><noop/></tr>
         <tr><noop/></tr>
       </tbody>
diff --git a/src/test/java/com/google/devsite/components/impl/DefaultSummaryListTest.kt b/src/test/java/com/google/devsite/components/impl/DefaultSummaryListTest.kt
index f3fb476..badbe36 100644
--- a/src/test/java/com/google/devsite/components/impl/DefaultSummaryListTest.kt
+++ b/src/test/java/com/google/devsite/components/impl/DefaultSummaryListTest.kt
@@ -57,7 +57,7 @@
 <div>
   <div class="devsite-table-wrapper">
     <table class="responsive">
-      <tbody>
+      <tbody class="list">
         <tr><noop/></tr>
         <tr><noop/></tr>
       </tbody>
@@ -86,7 +86,7 @@
       <thead>
         <tr><noop/></tr>
       </thead>
-      <tbody>
+      <tbody class="list">
         <tr><noop/></tr>
       </tbody>
     </table>
diff --git a/src/test/java/com/google/devsite/components/impl/DefaultTableTitleTest.kt b/src/test/java/com/google/devsite/components/impl/DefaultTableTitleTest.kt
index e931141..89e7820 100644
--- a/src/test/java/com/google/devsite/components/impl/DefaultTableTitleTest.kt
+++ b/src/test/java/com/google/devsite/components/impl/DefaultTableTitleTest.kt
@@ -35,7 +35,7 @@
         assertThat(output).isEqualTo(
             """
 <tr>
-  <th colspan="2">Title</th>
+  <th colspan="100%">Title</th>
 </tr>
             """.trim()
         )
@@ -53,7 +53,7 @@
         assertThat(output).isEqualTo(
             """
 <tr>
-  <th colspan="2"><h3>Title</h3></th>
+  <th colspan="100%"><h3>Title</h3></th>
 </tr>
             """.trim()
         )
diff --git a/testData/collections-ktx/docs/reference/androidx/classes.html b/testData/collections-ktx/docs/reference/androidx/classes.html
index bff2def..6f47b8a 100644
--- a/testData/collections-ktx/docs/reference/androidx/classes.html
+++ b/testData/collections-ktx/docs/reference/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_A">A</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/collection/ArrayMapKt.html">ArrayMapKt</a></code></td>
             <td></td>
@@ -34,7 +34,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/collection/LongSparseArrayKt.html">LongSparseArrayKt</a></code></td>
             <td></td>
@@ -57,7 +57,7 @@
     <h2 id="letter_S">S</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/collection/SparseArrayCompatTest.html">SparseArrayCompatTest</a></code></td>
             <td></td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapKt.html b/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapKt.html
index 2e5695e..8f2806f 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapKt.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/collection/ArrayMap.html">ArrayMap</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> K,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapTest.html b/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapTest.html
index c57e264..0848a49 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapTest.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/ArrayMapTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/collection/ArrayMapTest.html#ArrayMapTest()">ArrayMapTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> void</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/ArraySetKt.html b/testData/collections-ktx/docs/reference/androidx/collection/ArraySetKt.html
index 7073a4e..8840645 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/ArraySetKt.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/ArraySetKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/collection/ArraySet.html">ArraySet</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/ArraySetTest.html b/testData/collections-ktx/docs/reference/androidx/collection/ArraySetTest.html
index 991f8d0..3ea6014 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/ArraySetTest.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/ArraySetTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/collection/ArraySetTest.html#ArraySetTest()">ArraySetTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> void</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayKt.html b/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayKt.html
index d649398..24f36a6 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayKt.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final boolean</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayTest.html b/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayTest.html
index 7ee8779..d7740d1 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayTest.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/LongSparseArrayTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/collection/LongSparseArrayTest.html#LongSparseArrayTest()">LongSparseArrayTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> void</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/LruCacheKt.html b/testData/collections-ktx/docs/reference/androidx/collection/LruCacheKt.html
index ebe4086..765c8d7 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/LruCacheKt.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/LruCacheKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/collection/LruCache.html">LruCache</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> K,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -38,10 +38,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;maxSize</code></td>
               <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/collection/LruCache.html#sizeOf(kotlin.Any,kotlin.Any)">sizeOf</a></code></td>
               <td></td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/LruCacheTest.html b/testData/collections-ktx/docs/reference/androidx/collection/LruCacheTest.html
index d1b90af..8b66d10 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/LruCacheTest.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/LruCacheTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/collection/LruCacheTest.html#LruCacheTest()">LruCacheTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> void</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayCompatTest.html b/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayCompatTest.html
index 2c01b15..5c77455 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayCompatTest.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayCompatTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/collection/SparseArrayCompatTest.html#SparseArrayCompatTest()">SparseArrayCompatTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> void</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayKt.html b/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayKt.html
index 7870604..4d532fd 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayKt.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/SparseArrayKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final boolean</code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/androidx/collection/package-summary.html b/testData/collections-ktx/docs/reference/androidx/collection/package-summary.html
index 76f59ce..73fcc2a 100644
--- a/testData/collections-ktx/docs/reference/androidx/collection/package-summary.html
+++ b/testData/collections-ktx/docs/reference/androidx/collection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/collection/ArrayMapKt.html">ArrayMapKt</a></code></td>
             <td></td>
diff --git a/testData/collections-ktx/docs/reference/androidx/packages.html b/testData/collections-ktx/docs/reference/androidx/packages.html
index 88d0fdc..a6cd659 100644
--- a/testData/collections-ktx/docs/reference/androidx/packages.html
+++ b/testData/collections-ktx/docs/reference/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/collection/package-summary.html">androidx.collection</a></code></td>
             <td></td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/classes.html b/testData/collections-ktx/docs/reference/kotlin/androidx/classes.html
index 139f21f..1a061a9 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/classes.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_A">A</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/collection/ArrayMapKt.html">ArrayMapKt</a></code></td>
             <td></td>
@@ -34,7 +34,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/collection/LongSparseArrayKt.html">LongSparseArrayKt</a></code></td>
             <td></td>
@@ -57,7 +57,7 @@
     <h2 id="letter_S">S</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/collection/SparseArrayCompatTest.html">SparseArrayCompatTest</a></code></td>
             <td></td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArrayMapTest.html b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArrayMapTest.html
index f029324..cc253fa 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArrayMapTest.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArrayMapTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/collection/ArrayMapTest.html#ArrayMapTest()">ArrayMapTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArraySetTest.html b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArraySetTest.html
index d02c669..c447bee 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArraySetTest.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/ArraySetTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/collection/ArraySetTest.html#ArraySetTest()">ArraySetTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LongSparseArrayTest.html b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LongSparseArrayTest.html
index 08ceada..342bfd7 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LongSparseArrayTest.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LongSparseArrayTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/collection/LongSparseArrayTest.html#LongSparseArrayTest()">LongSparseArrayTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LruCacheTest.html b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LruCacheTest.html
index ff2dd85..3dc3cd6 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LruCacheTest.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/LruCacheTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/collection/LruCacheTest.html#LruCacheTest()">LruCacheTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/SparseArrayCompatTest.html b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/SparseArrayCompatTest.html
index 45efa6c..5c4dc08 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/SparseArrayCompatTest.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/SparseArrayCompatTest.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/collection/SparseArrayCompatTest.html#SparseArrayCompatTest()">SparseArrayCompatTest</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/package-summary.html b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/package-summary.html
index 49b1949..df91e77 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/collection/package-summary.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/collection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/collection/ArrayMapTest.html">ArrayMapTest</a></code></td>
             <td></td>
@@ -36,7 +36,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="/reference/kotlin/androidx/collection/ArrayMap.html">ArrayMap</a>&lt;K,&nbsp;V&gt;</code></td>
             <td>
@@ -78,7 +78,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -211,7 +211,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -259,10 +259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>maxSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -294,10 +294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/collection/LruCache.html#sizeOf(kotlin.Any,kotlin.Any)">sizeOf</a></code></td>
               <td></td>
diff --git a/testData/collections-ktx/docs/reference/kotlin/androidx/packages.html b/testData/collections-ktx/docs/reference/kotlin/androidx/packages.html
index 9977d1f..11cadff 100644
--- a/testData/collections-ktx/docs/reference/kotlin/androidx/packages.html
+++ b/testData/collections-ktx/docs/reference/kotlin/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/collection/package-summary.html">androidx.collection</a></code></td>
             <td></td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/classes.html b/testData/companionStatic/docs/reference/dokkatest/classes.html
index 49cfd99..fea751c 100644
--- a/testData/companionStatic/docs/reference/dokkatest/classes.html
+++ b/testData/companionStatic/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_C">C</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/ContainerOfBoring.html">ContainerOfBoring</a></code></td>
             <td></td>
@@ -50,7 +50,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/JavaStatics.html">JavaStatics</a></code></td>
             <td></td>
@@ -65,7 +65,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/KotlinObjectsKt.html">KotlinObjectsKt</a></code></td>
             <td></td>
@@ -76,7 +76,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/TopLevelInheritingObject.html">TopLevelInheritingObject</a></code></td>
             <td></td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.Companion.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.Companion.html
index 5707223..e02ee12 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.Companion.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected fields</h3></th>
+            <th colspan="100%"><h3>Protected fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.html
index 05d0c24..efefe4e 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfBoring.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/ContainerOfBoring.Companion.html">ContainerOfBoring.Companion</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -70,10 +70,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected fields</h3></th>
+            <th colspan="100%"><h3>Protected fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/companionStatic/ContainerOfBoring.html#ContainerOfBoring()">ContainerOfBoring</a>()</code></div>
@@ -103,10 +103,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.Companion.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.Companion.html
index b14b338..9da9d2a 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.Companion.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.Companion.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected fields</h3></th>
+            <th colspan="100%"><h3>Protected fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -73,15 +73,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static&nbsp;final void</code></td>
                       <td>
@@ -154,15 +154,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
                       <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.html
index 19167d9..35c0607 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfInheriting.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/ContainerOfInheriting.Companion.html">ContainerOfInheriting.Companion</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/companionStatic/ContainerOfInheriting.html#ContainerOfInheriting()">ContainerOfInheriting</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.Companion.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.Companion.html
index ac26aba..eb2b268 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.Companion.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final&nbsp;lateinit @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.html
index 2b132f8..58ab7e5 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfLateinit.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/ContainerOfLateinit.Companion.html">ContainerOfLateinit.Companion</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final&nbsp;lateinit @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/companionStatic/ContainerOfLateinit.html#ContainerOfLateinit()">ContainerOfLateinit</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html
index c45b6b4..755fbfa 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected fields</h3></th>
+            <th colspan="100%"><h3>Protected fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.html
index 5232bf7..a802c33 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/ContainerOfNamed.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html">ContainerOfNamed.NamedCompanion</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/companionStatic/ContainerOfNamed.html#ContainerOfNamed()">ContainerOfNamed</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html
index 1b4d85b..cf4657b 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -38,10 +38,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html#InnerJavaStatics()">InnerJavaStatics</a>()</code></div>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.html
index 00dcb56..b343108 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/JavaStatics.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html">JavaStatics.InnerJavaStatics</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static int</code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/companionStatic/JavaStatics.html#JavaStatics()">JavaStatics</a>()</code></div>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static int</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/KotlinObjectsKt.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/KotlinObjectsKt.html
index 3e03c01..055e558 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/KotlinObjectsKt.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/KotlinObjectsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelInheritingObject.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelInheritingObject.html
index c6c8a78..911fd82 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelInheritingObject.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelInheritingObject.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/dokkatest/companionStatic/TopLevelInheritingObject.html">TopLevelInheritingObject</a></code></td>
             <td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -108,15 +108,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static&nbsp;final void</code></td>
                       <td>
@@ -189,15 +189,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
                       <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelMultiInheritingObject.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelMultiInheritingObject.html
index aad6699..6eca651 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelMultiInheritingObject.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelMultiInheritingObject.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/dokkatest/companionStatic/TopLevelMultiInheritingObject.html">TopLevelMultiInheritingObject</a></code></td>
             <td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static int</code></td>
             <td>
@@ -114,15 +114,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/Comparator.html">java.util.Comparator</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Comparator.html">Comparator</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/dokkatest/companionStatic/TopLevelMultiInheritingObject.html">TopLevelMultiInheritingObject</a>&gt;</code></td>
                       <td>
@@ -174,7 +174,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static&nbsp;final void</code></td>
                       <td>
@@ -247,15 +247,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
                       <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelObject.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelObject.html
index e3c229c..48cfa89 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelObject.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/TopLevelObject.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
@@ -44,10 +44,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/dokkatest/companionStatic/TopLevelObject.html">TopLevelObject</a></code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final double</code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/companionStatic/package-summary.html b/testData/companionStatic/docs/reference/dokkatest/companionStatic/package-summary.html
index a7d4da0..4b18427 100644
--- a/testData/companionStatic/docs/reference/dokkatest/companionStatic/package-summary.html
+++ b/testData/companionStatic/docs/reference/dokkatest/companionStatic/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/ContainerOfBoring.html">ContainerOfBoring</a></code></td>
             <td></td>
diff --git a/testData/companionStatic/docs/reference/dokkatest/packages.html b/testData/companionStatic/docs/reference/dokkatest/packages.html
index 4852b5f..57fd384 100644
--- a/testData/companionStatic/docs/reference/dokkatest/packages.html
+++ b/testData/companionStatic/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/companionStatic/package-summary.html">dokkatest.companionStatic</a></code></td>
             <td></td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/classes.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/classes.html
index 31ac1b9..964a253 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_C">C</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html">ContainerOfBoring</a></code></td>
             <td></td>
@@ -50,7 +50,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/JavaStatics.html">JavaStatics</a></code></td>
             <td></td>
@@ -65,7 +65,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/KotlinObjectsKt.html">KotlinObjectsKt</a></code></td>
             <td></td>
@@ -76,7 +76,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/TopLevelInheritingObject.html">TopLevelInheritingObject</a></code></td>
             <td></td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.Companion.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.Companion.html
index e2d601c..fd72492 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.Companion.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected properties</h3></th>
+            <th colspan="100%"><h3>Protected properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html
index f9429c9..742ba8c 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected companion functions</h3></th>
+            <th colspan="100%"><h3>Protected companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected companion properties</h3></th>
+            <th colspan="100%"><h3>Protected companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -112,10 +112,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html#ContainerOfBoring()">ContainerOfBoring</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.Companion.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.Companion.html
index 42df18d..f7e1896 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.Companion.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.Companion.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected properties</h3></th>
+            <th colspan="100%"><h3>Protected properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -90,15 +90,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -171,15 +171,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>?</code></td>
                       <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.html
index e182094..fa3a34b 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.Companion.html">ContainerOfInheriting.Companion</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected companion properties</h3></th>
+            <th colspan="100%"><h3>Protected companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfInheriting.html#ContainerOfInheriting()">ContainerOfInheriting</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.Companion.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.Companion.html
index 6f05a2e..ae36f85 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.Companion.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>lateinit <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.html
index abeb432..d5ed43e 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>lateinit <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
@@ -44,10 +44,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfLateinit.html#ContainerOfLateinit()">ContainerOfLateinit</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html
index a55587d..f0f8024 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected properties</h3></th>
+            <th colspan="100%"><h3>Protected properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.html
index 75ec81e..4994ddd 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.NamedCompanion.html">ContainerOfNamed.NamedCompanion</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected companion properties</h3></th>
+            <th colspan="100%"><h3>Protected companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -98,10 +98,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfNamed.html#ContainerOfNamed()">ContainerOfNamed</a>()</code></div>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html
index c32b763..07330ac 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html#InnerJavaStatics()">InnerJavaStatics</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.html
index 2912baf..b435b27 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/JavaStatics.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/JavaStatics.InnerJavaStatics.html">JavaStatics.InnerJavaStatics</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/companionStatic/JavaStatics.html#JavaStatics()">JavaStatics</a>()</code></div>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>java-static <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>java-static <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelInheritingObject.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelInheritingObject.html
index af168af..46acbd5 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelInheritingObject.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelInheritingObject.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -102,15 +102,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -183,15 +183,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>?</code></td>
                       <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelMultiInheritingObject.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelMultiInheritingObject.html
index 9aba3cc..c887324 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelMultiInheritingObject.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelMultiInheritingObject.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -108,15 +108,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/Comparator.html">java.util.Comparator</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://developer.android.com/reference/java/util/Comparator.html">Comparator</a>&lt;<a href="/reference/kotlin/dokkatest/companionStatic/TopLevelMultiInheritingObject.html">TopLevelMultiInheritingObject</a>&gt;</code></td>
                       <td>
@@ -168,7 +168,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -241,15 +241,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>?</code></td>
                       <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelObject.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelObject.html
index 7101a90..e249b42 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelObject.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/TopLevelObject.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -44,10 +44,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/package-summary.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/package-summary.html
index f94d59b..11573da 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/package-summary.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/companionStatic/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/ContainerOfBoring.html">ContainerOfBoring</a></code></td>
             <td></td>
@@ -40,7 +40,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/TopLevelInheritingObject.html">TopLevelInheritingObject</a></code></td>
             <td></td>
@@ -59,7 +59,7 @@
     <h2>Constants summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
             <td>
@@ -72,7 +72,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -85,7 +85,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/companionStatic/docs/reference/kotlin/dokkatest/packages.html b/testData/companionStatic/docs/reference/kotlin/dokkatest/packages.html
index 9793c2c..325a48b 100644
--- a/testData/companionStatic/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/companionStatic/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/companionStatic/package-summary.html">dokkatest.companionStatic</a></code></td>
             <td></td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/classes.html b/testData/complicatedPlatform/docs/reference/dokkatest/classes.html
index 2bfbe45..fea39ef 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/classes.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_V">V</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.html">ViewDebug</a></code></td>
             <td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/packages.html b/testData/complicatedPlatform/docs/reference/dokkatest/packages.html
index 7505c16..cba2981 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/packages.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/package-summary.html">dokkatest.platform</a></code></td>
             <td></td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.CapturedViewProperty.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.CapturedViewProperty.html
index 64a4306..a690833 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.CapturedViewProperty.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.CapturedViewProperty.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.ExportedProperty.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.ExportedProperty.html
index fab9260..4d10278 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.ExportedProperty.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.ExportedProperty.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
               <td>
@@ -117,10 +117,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.ExportedProperty.html#prefix()">prefix</a></code></td>
               <td></td>
@@ -165,10 +165,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>ViewDebug.FlagToString[]</code></td>
               <td>
@@ -187,10 +187,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -209,10 +209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>ViewDebug.IntToString[]</code></td>
               <td>
@@ -257,10 +257,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.IntToString.html">ViewDebug.IntToString</a></code></td>
               <td></td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>ViewDebug.IntToString[]</code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.IntToString.html">ViewDebug.IntToString</a></code></td>
               <td></td>
@@ -327,10 +327,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
               <td>
@@ -344,10 +344,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.ExportedProperty.html#deepExport()">deepExport</a></code></td>
               <td></td>
@@ -364,10 +364,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.FlagToString.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.FlagToString.html
index 4d31204..8503ffb 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.FlagToString.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.FlagToString.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.ExportedProperty.html">ViewDebug.ExportedProperty</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract int</code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -97,10 +97,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -119,10 +119,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html
index dee1159..3470cfb 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html#BUILD_CACHE">BUILD_CACHE</a></code></td>
             <td></td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html#HierarchyTraceType()">HierarchyTraceType</a>()</code></div>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.IntToString.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.IntToString.html
index 3069e95..4054d3a 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.IntToString.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.IntToString.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.ExportedProperty.html">ViewDebug.ExportedProperty</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract int</code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -83,10 +83,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.RecyclerTraceType.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.RecyclerTraceType.html
index 21e5627..c77230a 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.RecyclerTraceType.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.RecyclerTraceType.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.RecyclerTraceType.html#BIND_VIEW">BIND_VIEW</a></code></td>
             <td></td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/platform/ViewDebug.RecyclerTraceType.html#RecyclerTraceType()">RecyclerTraceType</a>()</code></div>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.html
index 48e2f73..25f5d9f 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewDebug.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="https://developer.android.com/reference/java/lang/annotation/Target.html">Target</a>(value&nbsp;=&nbsp;[ElementType.FIELD,&nbsp;ElementType.METHOD])  @<a href="https://developer.android.com/reference/java/lang/annotation/Retention.html">Retention</a>(value&nbsp;=&nbsp;RetentionPolicy.RUNTIME)<a href="/reference/dokkatest/platform/ViewDebug.CapturedViewProperty.html">ViewDebug.CapturedViewProperty</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final boolean</code></td>
             <td>
@@ -96,10 +96,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/platform/ViewDebug.html#ViewDebug()">ViewDebug</a>()</code></div>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewGroup.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewGroup.html
index 6e092af..ac1a357 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewGroup.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/ViewGroup.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/platform/ViewGroup.html#ViewGroup()">ViewGroup</a>()</code></div>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/dokkatest/platform/ViewDebug.ExportedProperty.html">ViewDebug.ExportedProperty</a>(category&nbsp;=&nbsp;&quot;focus&quot;,&nbsp;mapping&nbsp;=&nbsp;[@<a href="/reference/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>(from&nbsp;=&nbsp;&quot;&quot;,&nbsp;to&nbsp;=&nbsp;&quot;FOCUS_BEFORE_DESCENDANTS&quot;),&nbsp;@<a href="/reference/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>(from&nbsp;=&nbsp;&quot;&quot;,&nbsp;to&nbsp;=&nbsp;&quot;FOCUS_AFTER_DESCENDANTS&quot;),&nbsp;@<a href="/reference/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>(from&nbsp;=&nbsp;&quot;&quot;,&nbsp;to&nbsp;=&nbsp;&quot;FOCUS_BLOCK_DESCENDANTS&quot;)]) int</code></td>
             <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/dokkatest/platform/package-summary.html b/testData/complicatedPlatform/docs/reference/dokkatest/platform/package-summary.html
index 9793137..3cd653f 100644
--- a/testData/complicatedPlatform/docs/reference/dokkatest/platform/package-summary.html
+++ b/testData/complicatedPlatform/docs/reference/dokkatest/platform/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.CapturedViewProperty.html">ViewDebug.CapturedViewProperty</a></code></td>
             <td>
@@ -40,7 +40,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.html">ViewDebug</a></code></td>
             <td>
@@ -57,7 +57,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/platform/ViewDebug.HierarchyTraceType.html">ViewDebug.HierarchyTraceType</a></code></td>
             <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/classes.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/classes.html
index 84d3e3b..18cb00e 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_V">V</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.html">ViewDebug</a></code></td>
             <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/packages.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/packages.html
index 111dab6..5f3f507 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/package-summary.html">dokkatest.platform</a></code></td>
             <td></td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.CapturedViewProperty.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.CapturedViewProperty.html
index cb757ef..ecc1fd6 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.CapturedViewProperty.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.CapturedViewProperty.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html
index 843fb60..ab612c6 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
@@ -117,10 +117,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html#prefix()">prefix</a></code></td>
               <td></td>
@@ -165,10 +165,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="/reference/kotlin/dokkatest/platform/ViewDebug.FlagToString.html">ViewDebug.FlagToString</a>!&gt;!</code></td>
               <td>
@@ -187,10 +187,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -209,10 +209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>!&gt;!</code></td>
               <td>
@@ -257,10 +257,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.IntToString.html">ViewDebug.IntToString</a></code></td>
               <td></td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>!&gt;!</code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.IntToString.html">ViewDebug.IntToString</a></code></td>
               <td></td>
@@ -327,10 +327,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
@@ -344,10 +344,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html#deepExport()">deepExport</a></code></td>
               <td></td>
@@ -364,10 +364,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.FlagToString.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.FlagToString.html
index bff9ad7..4163bb7 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.FlagToString.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.FlagToString.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.ExportedProperty.html">ViewDebug.ExportedProperty</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -97,10 +97,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -119,10 +119,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html
index 993db7a..a0c78ea 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html#BUILD_CACHE">BUILD_CACHE</a></code></td>
             <td></td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html#HierarchyTraceType()">HierarchyTraceType</a>()</code></div>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html
index 85b7d59..08645a1 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/android/view/ViewDebug.ExportedProperty.html">ViewDebug.ExportedProperty</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -83,10 +83,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.RecyclerTraceType.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.RecyclerTraceType.html
index 91f5f2a..40783ff 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.RecyclerTraceType.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.RecyclerTraceType.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.RecyclerTraceType.html#BIND_VIEW">BIND_VIEW</a></code></td>
             <td></td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.RecyclerTraceType.html#RecyclerTraceType()">RecyclerTraceType</a>()</code></div>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.html
index ff8b0c7..17cd299 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewDebug.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="https://developer.android.com/reference/java/lang/annotation/Target.html">Target</a>(value&nbsp;=&nbsp;[ElementType.FIELD,&nbsp;ElementType.METHOD])  @<a href="https://developer.android.com/reference/java/lang/annotation/Retention.html">Retention</a>(value&nbsp;=&nbsp;RetentionPolicy.RUNTIME)<a href="/reference/kotlin/dokkatest/platform/ViewDebug.CapturedViewProperty.html">ViewDebug.CapturedViewProperty</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -96,10 +96,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.html#ViewDebug()">ViewDebug</a>()</code></div>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewGroup.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewGroup.html
index 48fd9d1..5094725 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewGroup.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/ViewGroup.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/platform/ViewGroup.html#ViewGroup()">ViewGroup</a>()</code></div>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/dokkatest/platform/ViewDebug.ExportedProperty.html">ViewDebug.ExportedProperty</a>(category&nbsp;=&nbsp;&quot;focus&quot;,&nbsp;mapping&nbsp;=&nbsp;[@<a href="/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>(from&nbsp;=&nbsp;&quot;&quot;,&nbsp;to&nbsp;=&nbsp;&quot;FOCUS_BEFORE_DESCENDANTS&quot;),&nbsp;@<a href="/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>(from&nbsp;=&nbsp;&quot;&quot;,&nbsp;to&nbsp;=&nbsp;&quot;FOCUS_AFTER_DESCENDANTS&quot;),&nbsp;@<a href="/reference/kotlin/dokkatest/platform/ViewDebug.IntToString.html">ViewDebug.IntToString</a>(from&nbsp;=&nbsp;&quot;&quot;,&nbsp;to&nbsp;=&nbsp;&quot;FOCUS_BLOCK_DESCENDANTS&quot;)]) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/package-summary.html b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/package-summary.html
index 6ad2c29..1c5d141 100644
--- a/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/package-summary.html
+++ b/testData/complicatedPlatform/docs/reference/kotlin/dokkatest/platform/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.html">ViewDebug</a></code></td>
             <td>
@@ -26,7 +26,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.CapturedViewProperty.html">ViewDebug.CapturedViewProperty</a></code></td>
             <td>
@@ -57,7 +57,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/platform/ViewDebug.HierarchyTraceType.html">ViewDebug.HierarchyTraceType</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/classes.html b/testData/compose/docs/reference/androidx/classes.html
index 76ba1cc..073c049 100644
--- a/testData/compose/docs/reference/androidx/classes.html
+++ b/testData/compose/docs/reference/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_A">A</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -262,7 +262,7 @@
     <h2 id="letter_B">B</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BackdropScaffoldDefaults.html">BackdropScaffoldDefaults</a></code></td>
             <td>
@@ -427,7 +427,7 @@
     <h2 id="letter_C">C</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/CanvasKt.html">CanvasKt</a></code></td>
             <td></td>
@@ -622,7 +622,7 @@
     <h2 id="letter_D">D</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/DarkThemeKt.html">DarkThemeKt</a></code></td>
             <td></td>
@@ -775,7 +775,7 @@
     <h2 id="letter_E">E</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a></code></td>
             <td>
@@ -870,7 +870,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/FabPosition.html">FabPosition</a></code></td>
             <td>
@@ -987,7 +987,7 @@
     <h2 id="letter_G">G</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/shape/GenericShape.html">GenericShape</a></code></td>
             <td>
@@ -1024,7 +1024,7 @@
     <h2 id="letter_I">I</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/IconButtonKt.html">IconButtonKt</a></code></td>
             <td></td>
@@ -1191,7 +1191,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a></code></td>
             <td>
@@ -1246,7 +1246,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/LayoutScopeMarker.html">LayoutScopeMarker</a></code></td>
             <td></td>
@@ -1327,7 +1327,7 @@
     <h2 id="letter_M">M</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/MapSaverKt.html">MapSaverKt</a></code></td>
             <td></td>
@@ -1440,7 +1440,7 @@
     <h2 id="letter_N">N</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/NoLiveLiterals.html">NoLiveLiterals</a></code></td>
             <td>
@@ -1459,7 +1459,7 @@
     <h2 id="letter_O">O</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
             <td>
@@ -1486,7 +1486,7 @@
     <h2 id="letter_P">P</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/PaddingKt.html">PaddingKt</a></code></td>
             <td></td>
@@ -1581,7 +1581,7 @@
     <h2 id="letter_R">R</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/RadioButtonColors.html">RadioButtonColors</a></code></td>
             <td>
@@ -1724,7 +1724,7 @@
     <h2 id="letter_S">S</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html">SaveableStateHolder</a></code></td>
             <td>
@@ -2113,7 +2113,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/TabKt.html">TabKt</a></code></td>
             <td></td>
@@ -2256,7 +2256,7 @@
     <h2 id="letter_U">U</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
             <td>
@@ -2269,7 +2269,7 @@
     <h2 id="letter_V">V</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorConvertersKt.html">VectorConvertersKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AndroidActualDefaultDecayAnimationSpecKt.html b/testData/compose/docs/reference/androidx/compose/animation/AndroidActualDefaultDecayAnimationSpecKt.html
index f7f94ff..e12a0e5 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AndroidActualDefaultDecayAnimationSpecKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AndroidActualDefaultDecayAnimationSpecKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentKt.html b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentKt.html
index 7974621..4b10862 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
               <td></td>
@@ -280,10 +280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html
index 066a4d4..ed3d290 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.html">AnimatedContentScope.SlideDirection</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.html b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.html
index 3ff06e2..97260fc 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html">AnimatedContentScope.SlideDirection.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.html b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.html
index 28ce35b..dd3c969 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimatedContentScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/AnimatedContentScope.SlideDirection.html">AnimatedContentScope.SlideDirection</a></code></td>
             <td>
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> S</code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/Transition.Segment.html">androidx.compose.animation.core.Transition.Segment</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>infix boolean</code></td>
                       <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/package-summary.html#AnimatedContent(kotlin.Any,androidx.compose.ui.Modifier,kotlin.Function1,androidx.compose.ui.Alignment,kotlin.Function2)">AnimatedContent</a></code></td>
               <td></td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/package-summary.html#AnimatedContent(kotlin.Any,androidx.compose.ui.Modifier,kotlin.Function1,androidx.compose.ui.Alignment,kotlin.Function2)">AnimatedContent</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityKt.html b/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityKt.html
index 4f93aab..f31caf3 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;visible</code></td>
               <td>
@@ -223,10 +223,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -305,10 +305,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;visible</code></td>
               <td>
@@ -346,10 +346,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -426,10 +426,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;visible</code></td>
               <td>
@@ -467,10 +467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -652,10 +652,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visibleState</code></td>
               <td>
@@ -693,10 +693,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -746,10 +746,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visibleState</code></td>
               <td>
@@ -787,10 +787,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -873,10 +873,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visibleState</code></td>
               <td>
@@ -914,10 +914,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -1060,10 +1060,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visible</code></td>
               <td>
@@ -1101,10 +1101,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityScope.html b/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityScope.html
index b728089..4ce24ba 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityScope.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimatedVisibilityScope.html
@@ -121,10 +121,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Transition.html">Transition</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/EnterExitState.html">EnterExitState</a>&gt;</code></td>
             <td>
@@ -139,10 +139,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/AnimationModifierKt.html b/testData/compose/docs/reference/androidx/compose/animation/AnimationModifierKt.html
index 8948c3d..aeeb214 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/AnimationModifierKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/AnimationModifierKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/FiniteAnimationSpec.html">FiniteAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;&nbsp;animationSpec</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/ColorVectorConverterKt.html b/testData/compose/docs/reference/androidx/compose/animation/ColorVectorConverterKt.html
index db5b507..ff22f5a 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/ColorVectorConverterKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/ColorVectorConverterKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/colorspace/ColorSpace.html">ColorSpace</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector4D.html">AnimationVector4D</a>&gt;&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/ContentTransform.html b/testData/compose/docs/reference/androidx/compose/animation/ContentTransform.html
index 76743e0..63733bb 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/ContentTransform.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/ContentTransform.html
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/SizeTransform.html">SizeTransform</a></code></td>
             <td></td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/ExitTransition.html">ExitTransition</a></code></td>
             <td>
@@ -122,10 +122,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/ContentTransform.html#ContentTransform(androidx.compose.animation.EnterTransition,androidx.compose.animation.ExitTransition,kotlin.Float,androidx.compose.animation.SizeTransform)">ContentTransform</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a>&nbsp;targetContentEnter,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/ExitTransition.html">ExitTransition</a>&nbsp;initialContentExit,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;targetContentZIndex,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="/reference/androidx/compose/animation/SizeTransform.html">SizeTransform</a>&nbsp;sizeTransform<br>)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/CrossfadeKt.html b/testData/compose/docs/reference/androidx/compose/animation/CrossfadeKt.html
index cddfeee..f62ff4e 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/CrossfadeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/CrossfadeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -48,10 +48,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;targetState</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/DefaultDecayAnimationSpecKt.html b/testData/compose/docs/reference/androidx/compose/animation/DefaultDecayAnimationSpecKt.html
index 50a357f..6a1b627 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/DefaultDecayAnimationSpecKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/DefaultDecayAnimationSpecKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/EnterExitState.html b/testData/compose/docs/reference/androidx/compose/animation/EnterExitState.html
index 9e539f8..ec674d3 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/EnterExitState.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/EnterExitState.html
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/package-summary.html#AnimatedVisibility(kotlin.Boolean,androidx.compose.ui.Modifier,androidx.compose.animation.EnterTransition,androidx.compose.animation.ExitTransition,kotlin.Function1)">AnimatedVisibility</a></code></td>
             <td></td>
@@ -110,10 +110,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterExitState.html#PostExit">PostExit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/EnterExitTransitionKt.html b/testData/compose/docs/reference/androidx/compose/animation/EnterExitTransitionKt.html
index 701af07..2a8b869 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/EnterExitTransitionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/EnterExitTransitionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
             <td>
@@ -163,10 +163,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a>&nbsp;expandFrom</code></td>
               <td>
@@ -245,10 +245,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.html">Alignment</a>&nbsp;expandFrom</code></td>
               <td>
@@ -318,10 +318,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Vertical.html">Alignment.Vertical</a>&nbsp;expandFrom</code></td>
               <td>
@@ -384,10 +384,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialAlpha</code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;targetAlpha</code></td>
               <td>
@@ -500,10 +500,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a>&nbsp;shrinkTowards</code></td>
               <td>
@@ -582,10 +582,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.html">Alignment</a>&nbsp;shrinkTowards</code></td>
               <td>
@@ -655,10 +655,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Vertical.html">Alignment.Vertical</a>&nbsp;shrinkTowards</code></td>
               <td>
@@ -730,10 +730,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;&nbsp;initialOffset</code></td>
               <td>
@@ -794,10 +794,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;&nbsp;initialOffsetX</code></td>
               <td>
@@ -852,10 +852,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;&nbsp;initialOffsetY</code></td>
               <td>
@@ -915,10 +915,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;&nbsp;targetOffset</code></td>
               <td>
@@ -979,10 +979,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;&nbsp;targetOffsetX</code></td>
               <td>
@@ -1008,10 +1008,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;&nbsp;targetOffsetY</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.Companion.html b/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.Companion.html
index cea2a9d..c2b4d0c 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
             <td>
@@ -38,10 +38,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/ExitTransition.Companion.html#None()">None</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.html b/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.html
index dcf72a4..2721ce7 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/EnterTransition.html
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/package-summary.html#fadeIn(kotlin.Float,androidx.compose.animation.core.FiniteAnimationSpec)">fadeIn</a></code></td>
             <td></td>
@@ -106,10 +106,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.Companion.html">EnterTransition.Companion</a></code></td>
             <td></td>
@@ -121,10 +121,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/EnterTransition.html#EnterTransition()">EnterTransition</a>()</code></div>
@@ -137,10 +137,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -167,10 +167,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;infix @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
             <td>
@@ -232,10 +232,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a>&nbsp;enter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.Companion.html b/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.Companion.html
index 3b7517f..14c38b5 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/ExitTransition.html">ExitTransition</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.html b/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.html
index 1121036..19bea57 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/ExitTransition.html
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/package-summary.html#fadeOut(kotlin.Float,androidx.compose.animation.core.FiniteAnimationSpec)">fadeOut</a></code></td>
             <td></td>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/ExitTransition.Companion.html">ExitTransition.Companion</a></code></td>
             <td></td>
@@ -122,10 +122,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/ExitTransition.html#ExitTransition()">ExitTransition</a>()</code></div>
@@ -138,10 +138,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -215,10 +215,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/ExitTransition.html">ExitTransition</a>&nbsp;exit</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/ExperimentalAnimationApi.html b/testData/compose/docs/reference/androidx/compose/animation/ExperimentalAnimationApi.html
index 98f9235..3018e86 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/ExperimentalAnimationApi.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/ExperimentalAnimationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html#ExperimentalAnimationApi()">ExperimentalAnimationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/SingleValueAnimationKt.html b/testData/compose/docs/reference/androidx/compose/animation/SingleValueAnimationKt.html
index 8e91033..bd075d2 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/SingleValueAnimationKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/SingleValueAnimationKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Animatable.html">Animatable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector4D.html">AnimationVector4D</a>&gt;</code></td>
             <td>
@@ -72,10 +72,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;initialValue</code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;targetValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/SizeTransform.html b/testData/compose/docs/reference/androidx/compose/animation/SizeTransform.html
index fb82031..a5ebcbe 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/SizeTransform.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/SizeTransform.html
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/FiniteAnimationSpec.html">FiniteAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/SplineBasedDecayKt.html b/testData/compose/docs/reference/androidx/compose/animation/SplineBasedDecayKt.html
index cff995e..2413579 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/SplineBasedDecayKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/SplineBasedDecayKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html
index 7a10edd..7a25d2f 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>float</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html#SplineBasedFloatDecayAnimationSpec(androidx.compose.ui.unit.Density)">SplineBasedFloatDecayAnimationSpec</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Density.html">Density</a>&nbsp;density)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -99,10 +99,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Density.html">Density</a>&nbsp;density</code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -212,10 +212,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpecKt.html b/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpecKt.html
index d16fe40..4c5fb86 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpecKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/SplineBasedFloatDecayAnimationSpecKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/TransitionKt.html b/testData/compose/docs/reference/androidx/compose/animation/TransitionKt.html
index 2de63d7..3654f31 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/TransitionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/TransitionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
               <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.Transition).animateValue(androidx.compose.animation.core.TwoWayConverter,kotlin.Function1,kotlin.String,kotlin.Function1)">animateValue</a></code></td>
               <td></td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/Animatable.html b/testData/compose/docs/reference/androidx/compose/animation/core/Animatable.html
index 3da6dbd..04e2b24 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/Animatable.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/Animatable.html
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html#animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Any,kotlin.Function1)">animateTo</a></code></td>
             <td></td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -156,10 +156,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/Animatable.html#Animatable(kotlin.Any,androidx.compose.animation.core.TwoWayConverter,kotlin.Any)">Animatable</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter,<br>&nbsp;&nbsp;&nbsp;&nbsp;T&nbsp;visibilityThreshold<br>)</code></div>
@@ -172,10 +172,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationResult.html">AnimationResult</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -272,10 +272,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue</code></td>
               <td>
@@ -440,10 +440,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;targetValue</code></td>
               <td>
@@ -457,10 +457,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html#animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Any,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -487,10 +487,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html#animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Any,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -516,10 +516,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T&nbsp;lowerBound</code></td>
               <td>
@@ -539,10 +539,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a>&nbsp;kotlin.IllegalStateException</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimatableKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimatableKt.html
index a0eda74..c63e55b 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimatableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimatableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Animatable.html">Animatable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
             <td>
@@ -64,10 +64,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimateAsStateKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimateAsStateKt.html
index 8c49f8f..29f083b 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimateAsStateKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimateAsStateKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;targetValue</code></td>
               <td>
@@ -138,10 +138,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
               <td>
@@ -183,10 +183,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;targetValue</code></td>
               <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
               <td>
@@ -242,10 +242,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;targetValue</code></td>
               <td>
@@ -271,10 +271,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;</code></td>
               <td>
@@ -317,10 +317,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&nbsp;targetValue</code></td>
               <td>
@@ -346,10 +346,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;</code></td>
               <td>
@@ -370,10 +370,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>&nbsp;targetValue</code></td>
               <td>
@@ -399,10 +399,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
               <td>
@@ -445,10 +445,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&nbsp;targetValue</code></td>
               <td>
@@ -474,10 +474,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&gt;</code></td>
               <td>
@@ -500,10 +500,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Rect.html">Rect</a>&nbsp;targetValue</code></td>
               <td>
@@ -529,10 +529,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Rect.html">Rect</a>&gt;</code></td>
               <td>
@@ -555,10 +555,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;targetValue</code></td>
               <td>
@@ -584,10 +584,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&gt;</code></td>
               <td>
@@ -641,10 +641,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;targetValue</code></td>
               <td>
@@ -676,10 +676,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/Animation.html b/testData/compose/docs/reference/androidx/compose/animation/core/Animation.html
index e10eb8d..619b32c 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/Animation.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/Animation.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/DecayAnimation.html">DecayAnimation</a></code></td>
                 <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html">Animatable</a></code></td>
             <td></td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract long</code></td>
             <td>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -132,10 +132,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -176,10 +176,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -198,10 +198,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -220,10 +220,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -243,10 +243,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationConstants.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationConstants.html
index a48702e..e667696 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationConstants.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationConstants.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationConstants.html">AnimationConstants</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationEndReason.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationEndReason.html
index bf7ee48..a21c1a1 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationEndReason.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationEndReason.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/AnimationEndReason.html#BoundReached">BoundReached</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationKt.html
index 9c61c6c..e5d16b8 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimation.html">DecayAnimation</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
             <td>
@@ -53,10 +53,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/FloatDecayAnimationSpec.html">FloatDecayAnimationSpec</a>&nbsp;animationSpec</code></td>
               <td>
@@ -89,10 +89,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animationSpec</code></td>
               <td>
@@ -135,10 +135,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationResult.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationResult.html
index a3719ca..ee0dbd7 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationResult.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationResult.html
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationEndReason.html">AnimationEndReason</a></code></td>
             <td>
@@ -86,10 +86,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/AnimationResult.html#AnimationResult(androidx.compose.animation.core.AnimationState,androidx.compose.animation.core.AnimationEndReason)">AnimationResult</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;endState,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationEndReason.html">AnimationEndReason</a>&nbsp;endReason<br>)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationScope.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationScope.html
index 9aad05a..33eafdd 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationScope.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationScope.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.AnimationState).animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Boolean,kotlin.Function1)">animateTo</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final long</code></td>
             <td>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpec.html
index df071b0..6066f07 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/FiniteAnimationSpec.html">FiniteAnimationSpec</a></code></td>
                 <td>
@@ -45,7 +45,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">VectorizedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpecKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpecKt.html
index 732804a..c3060bd 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpecKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationSpecKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html">InfiniteRepeatableSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -74,10 +74,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animation</code></td>
               <td>
@@ -102,10 +102,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;init</code></td>
               <td>
@@ -119,10 +119,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a></code></td>
               <td></td>
@@ -141,10 +141,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;iterations</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;delayMillis</code></td>
               <td>
@@ -197,10 +197,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;dampingRatio</code></td>
               <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;durationMillis</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationState.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationState.html
index ef6e9ef..9b827d1 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationState.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final long</code></td>
             <td>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/AnimationState.html#AnimationState(androidx.compose.animation.core.TwoWayConverter,kotlin.Any,androidx.compose.animation.core.AnimationVector,kotlin.Long,kotlin.Long,kotlin.Boolean)">AnimationState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;V&nbsp;initialVelocityVector,<br>&nbsp;&nbsp;&nbsp;&nbsp;long&nbsp;lastFrameTimeNanos,<br>&nbsp;&nbsp;&nbsp;&nbsp;long&nbsp;finishedTimeNanos,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;isRunning<br>)</code></div>
@@ -92,10 +92,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -173,10 +173,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter</code></td>
               <td>
@@ -226,10 +226,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;value</code></td>
               <td>
@@ -267,10 +267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -289,10 +289,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -330,10 +330,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationStateKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationStateKt.html
index 3e72b37..5de8726 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationStateKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationStateKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
             <td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
               <td>
@@ -153,10 +153,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter</code></td>
               <td>
@@ -200,10 +200,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;value</code></td>
               <td>
@@ -263,10 +263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -285,10 +285,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -326,10 +326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
               <td>
@@ -348,10 +348,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector.html
index b08448f..cbe6148 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/AnimationVector.html#AnimationVector()">AnimationVector</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector1D.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector1D.html
index 4d58b38..2059c14 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector1D.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector1D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/AnimationVector1D.html#AnimationVector1D(kotlin.Float)">AnimationVector1D</a>(float&nbsp;initVal)</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initVal</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector2D.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector2D.html
index ec9329b..0026e70 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector2D.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector2D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/AnimationVector2D.html#AnimationVector2D(kotlin.Float,kotlin.Float)">AnimationVector2D</a>(float&nbsp;v1,&nbsp;float&nbsp;v2)</code></div>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -119,10 +119,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector3D.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector3D.html
index 9475106..1e303eb 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector3D.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector3D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/AnimationVector3D.html#AnimationVector3D(kotlin.Float,kotlin.Float,kotlin.Float)">AnimationVector3D</a>(float&nbsp;v1,&nbsp;float&nbsp;v2,&nbsp;float&nbsp;v3)</code></div>
@@ -82,10 +82,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector4D.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector4D.html
index bdf8607..2a13a9c 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector4D.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVector4D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/AnimationVector4D.html#AnimationVector4D(kotlin.Float,kotlin.Float,kotlin.Float,kotlin.Float)">AnimationVector4D</a>(float&nbsp;v1,&nbsp;float&nbsp;v2,&nbsp;float&nbsp;v3,&nbsp;float&nbsp;v4)</code></div>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVectorsKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVectorsKt.html
index 8947279..1eab5ee 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVectorsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AnimationVectorsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a></code></td>
             <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
@@ -81,10 +81,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;v1</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/AtomicReference.html b/testData/compose/docs/reference/androidx/compose/animation/core/AtomicReference.html
index 0789cef..27f9b63 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/AtomicReference.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/AtomicReference.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/AtomicReference.html#AtomicReference(kotlin.Any)">AtomicReference</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;value)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/CubicBezierEasing.html b/testData/compose/docs/reference/androidx/compose/animation/core/CubicBezierEasing.html
index cc9cd27..3b7c2d1 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/CubicBezierEasing.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/CubicBezierEasing.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#FastOutSlowInEasing()">FastOutSlowInEasing</a></code></td>
             <td></td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/CubicBezierEasing.html#CubicBezierEasing(kotlin.Float,kotlin.Float,kotlin.Float,kotlin.Float)">CubicBezierEasing</a>(float&nbsp;a,&nbsp;float&nbsp;b,&nbsp;float&nbsp;c,&nbsp;float&nbsp;d)</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;a</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimation.html b/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimation.html
index 8acf602..51a60cf 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimation.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimation.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html#animateDecay(kotlin.Any,androidx.compose.animation.core.DecayAnimationSpec,kotlin.Function1)">animateDecay</a></code></td>
             <td></td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/DecayAnimation.html#DecayAnimation(androidx.compose.animation.core.DecayAnimationSpec,androidx.compose.animation.core.TwoWayConverter,kotlin.Any,androidx.compose.animation.core.AnimationVector)">DecayAnimation</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animationSpec,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialVelocityVector<br>)</code></div>
@@ -115,10 +115,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -140,15 +140,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/Animation.html">androidx.compose.animation.core.Animation</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -203,10 +203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animationSpec</code></td>
               <td>
@@ -238,10 +238,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html#animateDecay(kotlin.Any,androidx.compose.animation.core.DecayAnimationSpec,kotlin.Function1)">animateDecay</a></code></td>
               <td></td>
@@ -263,10 +263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animationSpec</code></td>
               <td>
@@ -298,10 +298,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html#animateDecay(kotlin.Any,androidx.compose.animation.core.DecayAnimationSpec,kotlin.Function1)">animateDecay</a></code></td>
               <td></td>
@@ -327,10 +327,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -349,10 +349,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpec.html
index 9abcf0e..ac101e6 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpec.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html">VectorizedDecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -66,10 +66,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter</code></td>
               <td>
@@ -89,10 +89,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpecKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpecKt.html
index a771546..704110c 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpecKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/DecayAnimationSpecKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
               <td>
@@ -81,10 +81,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;frictionMultiplier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html
index aff9762..c4d59b5 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/KeyframesSpec.html">KeyframesSpec</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -70,10 +70,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/Easing.html b/testData/compose/docs/reference/androidx/compose/animation/core/Easing.html
index 2b0d7df..3e08158 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/Easing.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/Easing.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/CubicBezierEasing.html">CubicBezierEasing</a></code></td>
                 <td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/EasingKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/EasingKt.html
index 58786b0..06f9bf3 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/EasingKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/EasingKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/ExperimentalTransitionApi.html b/testData/compose/docs/reference/androidx/compose/animation/core/ExperimentalTransitionApi.html
index f151773..28f52c0 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/ExperimentalTransitionApi.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/ExperimentalTransitionApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/ExperimentalTransitionApi.html#ExperimentalTransitionApi()">ExperimentalTransitionApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/FiniteAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/FiniteAnimationSpec.html
index 7746686..4ef20fe 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/FiniteAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/FiniteAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -45,7 +45,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/KeyframesSpec.html">KeyframesSpec</a></code></td>
                 <td>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html">InfiniteRepeatableSpec</a></code></td>
             <td></td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">VectorizedFiniteAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -115,10 +115,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/FloatAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/FloatAnimationSpec.html
index 9b6808b..a55e8b0 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/FloatAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/FloatAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/FloatSpringSpec.html">FloatSpringSpec</a></code></td>
                 <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">VectorizedAnimationSpec</a></code></td>
             <td></td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract long</code></td>
             <td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/FloatDecayAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/FloatDecayAnimationSpec.html
index d5e4d45..079c736 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/FloatDecayAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/FloatDecayAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/FloatExponentialDecaySpec.html">FloatExponentialDecaySpec</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract long</code></td>
             <td>
@@ -97,10 +97,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -216,10 +216,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/FloatExponentialDecaySpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/FloatExponentialDecaySpec.html
index 97d4078..2cc88a9 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/FloatExponentialDecaySpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/FloatExponentialDecaySpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>float</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/FloatExponentialDecaySpec.html#FloatExponentialDecaySpec(kotlin.Float,kotlin.Float)">FloatExponentialDecaySpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;frictionMultiplier,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;absVelocityThreshold<br>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -99,10 +99,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;frictionMultiplier</code></td>
               <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -184,10 +184,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/FloatSpringSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/FloatSpringSpec.html
index addbcdc..028fce9 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/FloatSpringSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/FloatSpringSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/FloatSpringSpec.html#FloatSpringSpec(kotlin.Float,kotlin.Float,kotlin.Float)">FloatSpringSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;dampingRatio,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;stiffness,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;visibilityThreshold<br>)</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -96,15 +96,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/FloatAnimationSpec.html">androidx.compose.animation.core.FloatAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html">VectorizedFloatAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
                       <td>
@@ -139,10 +139,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;dampingRatio</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -209,10 +209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -243,10 +243,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/FloatTweenSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/FloatTweenSpec.html
index bfc291d..e6e6905 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/FloatTweenSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/FloatTweenSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/FloatTweenSpec.html#FloatTweenSpec(kotlin.Int,kotlin.Int,androidx.compose.animation.core.Easing)">FloatTweenSpec</a>(int&nbsp;duration,&nbsp;int&nbsp;delay,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a>&nbsp;easing)</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/FloatAnimationSpec.html">androidx.compose.animation.core.FloatAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>float</code></td>
                       <td>
@@ -139,10 +139,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;duration</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialValue</code></td>
               <td>
@@ -209,10 +209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicy.html b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicy.html
index 193feaf..244deb0 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicy.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicy.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/InfiniteAnimationPolicy.Key.html">InfiniteAnimationPolicy.Key</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
@@ -67,15 +67,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -91,7 +91,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicyKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicyKt.html
index 32f1c64..8328726 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicyKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteAnimationPolicyKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html
index 6fc0e32..edd2f42 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#infiniteRepeatable(androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">infiniteRepeatable</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/InfiniteRepeatableSpec.html#InfiniteRepeatableSpec(androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">InfiniteRepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animation,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a>&nbsp;repeatMode<br>)</code></div>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animation</code></td>
               <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransition.html b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransition.html
index 3791261..78f6f32 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransition.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransition.html
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
@@ -173,10 +173,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
@@ -227,10 +227,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateFloat(kotlin.Float,kotlin.Float,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateFloat</a></code></td>
               <td></td>
@@ -312,10 +312,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransitionKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransitionKt.html
index 677ed6a..492cc9a 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransitionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/InfiniteTransitionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateFloat(kotlin.Float,kotlin.Float,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateFloat</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/InternalAnimationApi.html b/testData/compose/docs/reference/androidx/compose/animation/core/InternalAnimationApi.html
index b074c62..5c822b5 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/InternalAnimationApi.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/InternalAnimationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/animation/core/InternalAnimationApi.html#InternalAnimationApi()">InternalAnimationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html b/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html
index d9310ff..f0dd571 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html b/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html
index 736e7a6..10eb239 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html
@@ -27,10 +27,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html#keyframes()">keyframes</a></code></td>
             <td></td>
@@ -43,10 +43,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html#KeyframesSpecConfig()">KeyframesSpecConfig</a>()</code></div>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;infix @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html">KeyframesSpec.KeyframeEntity</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -142,10 +142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;timeStamp</code></td>
               <td>
@@ -159,10 +159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html">KeyframesSpec.KeyframeEntity</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
@@ -200,10 +200,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a>&nbsp;easing</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.html
index 95eef21..87257fc 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/KeyframesSpec.html
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html">KeyframesSpec.KeyframeEntity</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/KeyframesSpec.html#KeyframesSpec(androidx.compose.animation.core.KeyframesSpec.KeyframesSpecConfig)">KeyframesSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;config<br>)</code></div>
@@ -97,10 +97,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/MutableTransitionState.html b/testData/compose/docs/reference/androidx/compose/animation/core/MutableTransitionState.html
index 321279c..e388820 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/MutableTransitionState.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/MutableTransitionState.html
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
             <td></td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> S</code></td>
             <td>
@@ -117,10 +117,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;S&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/MutableTransitionState.html#MutableTransitionState(kotlin.Any)">MutableTransitionState</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> S&nbsp;initialState)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/RepeatMode.html b/testData/compose/docs/reference/androidx/compose/animation/core/RepeatMode.html
index ad3a0ca..0623ab8 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/RepeatMode.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/RepeatMode.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/RepeatMode.html#Restart">Restart</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/RepeatableSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/RepeatableSpec.html
index 6d9a99b..244a081 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/RepeatableSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/RepeatableSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#repeatable(kotlin.Int,androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">repeatable</a></code></td>
             <td></td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/RepeatableSpec.html#RepeatableSpec(kotlin.Int,androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">RepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;iterations,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animation,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a>&nbsp;repeatMode<br>)</code></div>
@@ -88,10 +88,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -138,10 +138,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;iterations</code></td>
               <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/SnapSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/SnapSpec.html
index ea2ccf8..45e5fc2 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/SnapSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/SnapSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/SnapSpec.html#SnapSpec(kotlin.Int)">SnapSpec</a>(int&nbsp;delay)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;delay</code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/Spring.html b/testData/compose/docs/reference/androidx/compose/animation/core/Spring.html
index e4a10ca..2c49a35 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/Spring.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/Spring.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Spring.html">Spring</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/SpringSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/SpringSpec.html
index 4f8ba2c..7589535 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/SpringSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/SpringSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/SpringSpec.html#SpringSpec(kotlin.Float,kotlin.Float,kotlin.Any)">SpringSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;dampingRatio,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;stiffness,<br>&nbsp;&nbsp;&nbsp;&nbsp;T&nbsp;visibilityThreshold<br>)</code></div>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;dampingRatio</code></td>
               <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/SuspendAnimationKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/SuspendAnimationKt.html
index 58e48b4..273e08a 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/SuspendAnimationKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/SuspendAnimationKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final void</code></td>
             <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.AnimationState).animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Boolean,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -132,10 +132,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.AnimationState).animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Boolean,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/[JVM root]/package-summary.html">[JVM root]</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/TargetBasedAnimation.html b/testData/compose/docs/reference/androidx/compose/animation/core/TargetBasedAnimation.html
index bf9886f..50a38a2 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/TargetBasedAnimation.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/TargetBasedAnimation.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Transition.html">Transition</a></code></td>
             <td></td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/TargetBasedAnimation.html#TargetBasedAnimation(androidx.compose.animation.core.AnimationSpec,androidx.compose.animation.core.TwoWayConverter,kotlin.Any,kotlin.Any,androidx.compose.animation.core.AnimationVector)">TargetBasedAnimation</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animationSpec,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;typeConverter,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;targetValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;V&nbsp;initialVelocityVector<br>)</code></div>
@@ -104,10 +104,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -129,15 +129,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/Animation.html">androidx.compose.animation.core.Animation</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -190,10 +190,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;animationSpec</code></td>
               <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -259,10 +259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/Transition.Segment.html b/testData/compose/docs/reference/androidx/compose/animation/core/Transition.Segment.html
index 336594a..c6d28f5 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/Transition.Segment.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/Transition.Segment.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/AnimatedContentScope.html">AnimatedContentScope</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> S</code></td>
             <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;infix boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/Transition.html b/testData/compose/docs/reference/androidx/compose/animation/core/Transition.html
index b8e50f5..db10765 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/Transition.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/Transition.html
@@ -102,10 +102,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
             <td></td>
@@ -130,10 +130,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Transition.Segment.html">Transition.Segment</a></code></td>
             <td>
@@ -147,10 +147,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> S</code></td>
             <td>
@@ -192,10 +192,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -426,10 +426,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
               <td></td>
@@ -548,10 +548,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visible</code></td>
               <td>
@@ -589,10 +589,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -726,10 +726,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
               <td>
@@ -743,10 +743,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.Transition).animateValue(androidx.compose.animation.core.TwoWayConverter,kotlin.Function1,kotlin.String,kotlin.Function1)">animateValue</a></code></td>
               <td></td>
@@ -774,10 +774,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
               <td>
@@ -852,10 +852,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
               <td>
@@ -869,10 +869,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
@@ -900,10 +900,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;</code></td>
               <td>
@@ -925,10 +925,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;</code></td>
               <td>
@@ -950,10 +950,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
               <td>
@@ -975,10 +975,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&gt;</code></td>
               <td>
@@ -1000,10 +1000,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Rect.html">Rect</a>&gt;</code></td>
               <td>
@@ -1025,10 +1025,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&gt;</code></td>
               <td>
@@ -1050,10 +1050,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
@@ -1067,10 +1067,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/TransitionKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/TransitionKt.html
index fb12661..e6cf7bb 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/TransitionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/TransitionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
               <td>
@@ -196,10 +196,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
               <td>
@@ -213,10 +213,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
@@ -244,10 +244,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&gt;</code></td>
               <td>
@@ -269,10 +269,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;</code></td>
               <td>
@@ -294,10 +294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
               <td>
@@ -319,10 +319,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&gt;</code></td>
               <td>
@@ -344,10 +344,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Rect.html">Rect</a>&gt;</code></td>
               <td>
@@ -369,10 +369,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&gt;</code></td>
               <td>
@@ -394,10 +394,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
@@ -411,10 +411,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
@@ -619,10 +619,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Transition.html">Transition</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
@@ -636,10 +636,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Transition.html">Transition</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/TweenSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/TweenSpec.html
index f18f4e2..3dbeb34 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/TweenSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/TweenSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/animation/core/TweenSpec.html#TweenSpec(kotlin.Int,kotlin.Int,androidx.compose.animation.core.Easing)">TweenSpec</a>(int&nbsp;durationMillis,&nbsp;int&nbsp;delay,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a>&nbsp;easing)</code></div>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;durationMillis</code></td>
               <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;converter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/TwoWayConverter.html b/testData/compose/docs/reference/androidx/compose/animation/core/TwoWayConverter.html
index 950275e..400b4aa 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/TwoWayConverter.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/TwoWayConverter.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorConvertersKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorConvertersKt.html
index c36e7a6..2a05e0f 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorConvertersKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorConvertersKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
             <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;convertToVector</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html
index d26143a..55219f3 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">VectorizedFiniteAnimationSpec</a></code></td>
                 <td>
@@ -39,7 +39,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animation.html">Animation</a></code></td>
             <td></td>
@@ -111,10 +111,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -129,10 +129,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract long</code></td>
             <td>
@@ -179,10 +179,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -213,10 +213,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -247,10 +247,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -287,10 +287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html
index 0a70491..6b6903c 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/DecayAnimation.html">DecayAnimation</a></code></td>
             <td></td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract long</code></td>
             <td>
@@ -101,10 +101,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -129,10 +129,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -157,10 +157,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -191,10 +191,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html
index d5b4c30..58a3b3a 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html">VectorizedKeyframesSpec</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract int</code></td>
             <td>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default long</code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
                       <td>
@@ -131,15 +131,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default boolean</code></td>
                       <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html
index d76c4d8..e2dc7be 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -51,7 +51,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html">VectorizedKeyframesSpec</a></code></td>
                 <td>
@@ -82,10 +82,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default boolean</code></td>
             <td>
@@ -100,15 +100,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract long</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html
index 1fab0d7..9662a6d 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html#VectorizedFloatAnimationSpec(androidx.compose.animation.core.FloatAnimationSpec)">VectorizedFloatAnimationSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/FloatAnimationSpec.html">FloatAnimationSpec</a>&nbsp;anim<br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -72,15 +72,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -105,10 +105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/FloatAnimationSpec.html">FloatAnimationSpec</a>&nbsp;anim</code></td>
               <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -162,10 +162,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -196,10 +196,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html
index 7a94cb6..4e1d1c1 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html#VectorizedInfiniteRepeatableSpec(androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">VectorizedInfiniteRepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;animation,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a>&nbsp;repeatMode<br>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -82,15 +82,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
                       <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;animation</code></td>
               <td>
@@ -149,10 +149,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -183,10 +183,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -223,10 +223,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html
index 8065dbb..4419431 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html
@@ -27,10 +27,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/KeyframesSpec.html">KeyframesSpec</a></code></td>
             <td></td>
@@ -43,10 +43,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedKeyframesSpec.html#VectorizedKeyframesSpec(kotlin.collections.Map,kotlin.Int,kotlin.Int)">VectorizedKeyframesSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Map.html">Map</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a>&gt;&gt;&nbsp;keyframes,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;durationMillis,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;delayMillis<br>)</code></div>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
             <td>
@@ -109,15 +109,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
                       <td>
@@ -134,7 +134,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>long</code></td>
                       <td>
@@ -154,15 +154,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -197,10 +197,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Map.html">Map</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a>&gt;&gt;&nbsp;keyframes</code></td>
               <td>
@@ -232,10 +232,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -272,10 +272,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedRepeatableSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedRepeatableSpec.html
index a759119..bed8432 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedRepeatableSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedRepeatableSpec.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedRepeatableSpec.html#VectorizedRepeatableSpec(kotlin.Int,androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">VectorizedRepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;iterations,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;animation,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a>&nbsp;repeatMode<br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>long</code></td>
             <td>
@@ -65,15 +65,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
                       <td>
@@ -93,15 +93,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -125,10 +125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;iterations</code></td>
               <td>
@@ -160,10 +160,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;initialValue</code></td>
               <td>
@@ -194,10 +194,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -234,10 +234,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSnapSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSnapSpec.html
index 88bb8c0..ada750c 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSnapSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSnapSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedSnapSpec.html#VectorizedSnapSpec(kotlin.Int)">VectorizedSnapSpec</a>(int&nbsp;delayMillis)</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
             <td>
@@ -82,15 +82,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
                       <td>
@@ -107,7 +107,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>long</code></td>
                       <td>
@@ -127,15 +127,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -170,10 +170,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;delayMillis</code></td>
               <td>
@@ -193,10 +193,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -233,10 +233,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSpringSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSpringSpec.html
index 01c588d..5d57b66 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSpringSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedSpringSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedSpringSpec.html#VectorizedSpringSpec(kotlin.Float,kotlin.Float,androidx.compose.animation.core.AnimationVector)">VectorizedSpringSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;dampingRatio,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;stiffness,<br>&nbsp;&nbsp;&nbsp;&nbsp;V&nbsp;visibilityThreshold<br>)</code></div>
@@ -56,15 +56,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>long</code></td>
                       <td>
@@ -105,15 +105,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -147,10 +147,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;dampingRatio</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedTweenSpec.html b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedTweenSpec.html
index 87341d4..c40e89b 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedTweenSpec.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VectorizedTweenSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="/reference/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/androidx/compose/animation/core/VectorizedTweenSpec.html#VectorizedTweenSpec(kotlin.Int,kotlin.Int,androidx.compose.animation.core.Easing)">VectorizedTweenSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;durationMillis,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;delayMillis,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/Easing.html">Easing</a>&nbsp;easing<br>)</code></div>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V</code></td>
                       <td>
@@ -114,7 +114,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>long</code></td>
                       <td>
@@ -134,15 +134,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;durationMillis</code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
@@ -257,10 +257,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;playTimeNanos</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/VisibilityThresholdsKt.html b/testData/compose/docs/reference/androidx/compose/animation/core/VisibilityThresholdsKt.html
index 3b7f1da..9c8c945 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/VisibilityThresholdsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/VisibilityThresholdsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/IntOffset.html">IntOffset</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/core/package-summary.html b/testData/compose/docs/reference/androidx/compose/animation/core/package-summary.html
index 3ea143d..2953399 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/core/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/core/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/ExperimentalTransitionApi.html">ExperimentalTransitionApi</a></code></td>
             <td></td>
@@ -24,7 +24,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animation.html">Animation</a></code></td>
             <td>
@@ -121,7 +121,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/Animatable.html">Animatable</a></code></td>
             <td>
@@ -386,7 +386,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/core/AnimationEndReason.html">AnimationEndReason</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/animation/package-summary.html b/testData/compose/docs/reference/androidx/compose/animation/package-summary.html
index 934732d..b30c2e0 100644
--- a/testData/compose/docs/reference/androidx/compose/animation/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/animation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a></code></td>
             <td></td>
@@ -20,7 +20,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/AnimatedVisibilityScope.html">AnimatedVisibilityScope</a></code></td>
             <td>
@@ -39,7 +39,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/AndroidActualDefaultDecayAnimationSpecKt.html">AndroidActualDefaultDecayAnimationSpecKt</a></code></td>
             <td></td>
@@ -130,7 +130,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterExitState.html">EnterExitState</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/AtomicLong.html b/testData/compose/docs/reference/androidx/compose/foundation/AtomicLong.html
index 421945a..74f3e54 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/AtomicLong.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/AtomicLong.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/AtomicLong.html#AtomicLong(kotlin.Long)">AtomicLong</a>(long&nbsp;value)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final long</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/AtomicReference.html b/testData/compose/docs/reference/androidx/compose/foundation/AtomicReference.html
index 94771c7..06b7e26 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/AtomicReference.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/AtomicReference.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/foundation/AtomicReference.html#AtomicReference(kotlin.Any)">AtomicReference</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;value)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/BackgroundKt.html b/testData/compose/docs/reference/androidx/compose/foundation/BackgroundKt.html
index 7688723..33d421f 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/BackgroundKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/BackgroundKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;color</code></td>
               <td>
@@ -98,10 +98,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Brush.html">Brush</a>&nbsp;brush</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/BorderKt.html b/testData/compose/docs/reference/androidx/compose/foundation/BorderKt.html
index 595430a..54d8523 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/BorderKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/BorderKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -63,10 +63,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Shape.html">Shape</a>&nbsp;shape</code></td>
               <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;width</code></td>
               <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;width</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/BorderStroke.html b/testData/compose/docs/reference/androidx/compose/foundation/BorderStroke.html
index 76f7a3b..b3214f7 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/BorderStroke.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/BorderStroke.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Brush.html">Brush</a></code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/BorderStroke.html#BorderStroke(androidx.compose.ui.unit.Dp,androidx.compose.ui.graphics.Brush)">BorderStroke</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;width,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Brush.html">Brush</a>&nbsp;brush)</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/BorderStroke.html">BorderStroke</a></code></td>
             <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;width</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/BorderStrokeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/BorderStrokeKt.html
index 1aa9706..7d2dd76 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/BorderStrokeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/BorderStrokeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/BorderStroke.html">BorderStroke</a></code></td>
             <td>
@@ -38,10 +38,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;width</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/CanvasKt.html b/testData/compose/docs/reference/androidx/compose/foundation/CanvasKt.html
index 24cf42c..8897f28 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/CanvasKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/CanvasKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -55,10 +55,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ClickableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/ClickableKt.html
index 072cc35..3666bf0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ClickableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ClickableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -71,10 +71,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a>&nbsp;interactionSource</code></td>
               <td>
@@ -186,10 +186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -256,10 +256,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a>&nbsp;interactionSource</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/DarkThemeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/DarkThemeKt.html
index 05750ba..fe615df 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/DarkThemeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/DarkThemeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> boolean</code></td>
             <td>
@@ -51,10 +51,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ExperimentalFoundationApi.html b/testData/compose/docs/reference/androidx/compose/foundation/ExperimentalFoundationApi.html
index 1a9b3e3..67e8307 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ExperimentalFoundationApi.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ExperimentalFoundationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/ExperimentalFoundationApi.html#ExperimentalFoundationApi()">ExperimentalFoundationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/FocusableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/FocusableKt.html
index 05b2cc2..256f5c5 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/FocusableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/FocusableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ImageKt.html b/testData/compose/docs/reference/androidx/compose/foundation/ImageKt.html
index c0cfc0a..0a05b25 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ImageKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ImageKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -76,10 +76,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/ImageBitmap.html">ImageBitmap</a>&nbsp;bitmap</code></td>
               <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/vector/ImageVector.html">ImageVector</a>&nbsp;imageVector</code></td>
               <td>
@@ -216,10 +216,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/painter/Painter.html">Painter</a>&nbsp;painter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/Indication.html b/testData/compose/docs/reference/androidx/compose/foundation/Indication.html
index 572b3c8..8672651 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/Indication.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/Indication.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/IndicationInstance.html">IndicationInstance</a></code></td>
             <td>
@@ -42,10 +42,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a>&nbsp;interactionSource</code></td>
               <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/IndicationInstance.html">IndicationInstance</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/IndicationInstance.html b/testData/compose/docs/reference/androidx/compose/foundation/IndicationInstance.html
index cf86e12..acab81b 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/IndicationInstance.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/IndicationInstance.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/IndicationKt.html b/testData/compose/docs/reference/androidx/compose/foundation/IndicationKt.html
index 1df89d1..3fce973 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/IndicationKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/IndicationKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/Indication.html">Indication</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a>&nbsp;interactionSource</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/InternalFoundationApi.html b/testData/compose/docs/reference/androidx/compose/foundation/InternalFoundationApi.html
index afef014..3d7bd05 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/InternalFoundationApi.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/InternalFoundationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/InternalFoundationApi.html#InternalFoundationApi()">InternalFoundationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/MutatePriority.html b/testData/compose/docs/reference/androidx/compose/foundation/MutatePriority.html
index dc7ea33..8526675 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/MutatePriority.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/MutatePriority.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/MutatePriority.html#Default">Default</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/MutatorMutex.html b/testData/compose/docs/reference/androidx/compose/foundation/MutatorMutex.html
index 738900c..de1f14b 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/MutatorMutex.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/MutatorMutex.html
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/MutatorMutex.html#MutatorMutex()">MutatorMutex</a>()</code></div>
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a>&nbsp;priority</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;receiver</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ProgressSemanticsKt.html b/testData/compose/docs/reference/androidx/compose/foundation/ProgressSemanticsKt.html
index 9d1c8f2..c541a25 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ProgressSemanticsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ProgressSemanticsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -58,10 +58,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ScrollKt.html b/testData/compose/docs/reference/androidx/compose/foundation/ScrollKt.html
index 725a88f..0767b5e 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ScrollKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ScrollKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -70,10 +70,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/ScrollState.html">ScrollState</a>&nbsp;state</code></td>
               <td>
@@ -105,10 +105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#rememberScrollState(kotlin.Int)">rememberScrollState</a></code></td>
               <td></td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;initial</code></td>
               <td>
@@ -223,10 +223,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/ScrollState.html">ScrollState</a>&nbsp;state</code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#rememberScrollState(kotlin.Int)">rememberScrollState</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.Companion.html b/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.Companion.html
index 6d7d45a..136b457 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/ScrollState.html">ScrollState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.html b/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.html
index 7247c94..59a6e1d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/ScrollState.html
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/ScrollState.Companion.html">ScrollState.Companion</a></code></td>
             <td></td>
@@ -88,10 +88,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
             <td>
@@ -127,10 +127,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/ScrollState.html#ScrollState(kotlin.Int)">ScrollState</a>(int&nbsp;initial)</code></div>
@@ -143,10 +143,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -207,10 +207,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;initial</code></td>
               <td>
@@ -230,10 +230,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;value</code></td>
               <td>
@@ -260,10 +260,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;delta</code></td>
               <td>
@@ -277,10 +277,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -306,10 +306,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;value</code></td>
               <td>
@@ -323,10 +323,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -340,10 +340,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/ScrollState.html#animateScrollTo(kotlin.Int,androidx.compose.animation.core.AnimationSpec)">animateScrollTo</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/SomeJavaFile.html b/testData/compose/docs/reference/androidx/compose/foundation/SomeJavaFile.html
index d71c574..dc26871 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/SomeJavaFile.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/SomeJavaFile.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/SomeJavaFile.html#SomeJavaFile()">SomeJavaFile</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragGestureDetectorKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragGestureDetectorKt.html
index d545009..3a2ebb6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragGestureDetectorKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragGestureDetectorKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final <a href="/reference/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a></code></td>
             <td>
@@ -188,10 +188,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitVerticalDragOrCancellation(androidx.compose.ui.input.pointer.PointerId)">awaitVerticalDragOrCancellation</a></code></td>
               <td></td>
@@ -275,10 +275,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).horizontalDrag(androidx.compose.ui.input.pointer.PointerId,kotlin.Function1)">horizontalDrag</a></code></td>
               <td></td>
@@ -362,10 +362,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a></code></td>
               <td>
@@ -380,10 +380,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitVerticalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitVerticalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -470,10 +470,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a></code></td>
               <td>
@@ -488,10 +488,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitHorizontalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -571,10 +571,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalDragOrCancellation(androidx.compose.ui.input.pointer.PointerId)">awaitHorizontalDragOrCancellation</a></code></td>
               <td></td>
@@ -658,10 +658,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a></code></td>
               <td>
@@ -676,10 +676,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitHorizontalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -741,10 +741,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectVerticalDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectVerticalDragGestures</a></code></td>
               <td></td>
@@ -812,10 +812,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectVerticalDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectVerticalDragGestures</a></code></td>
               <td></td>
@@ -877,10 +877,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectVerticalDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectVerticalDragGestures</a></code></td>
               <td></td>
@@ -938,10 +938,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectDragGestures</a></code></td>
               <td></td>
@@ -1026,10 +1026,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1044,10 +1044,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -1134,10 +1134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitHorizontalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -1223,10 +1223,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1241,10 +1241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitVerticalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitVerticalTouchSlopOrCancellation</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragScope.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragScope.html
index 52425da..693655a 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DragScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableKt.html
index df7624b..efdb7f6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/DraggableState.html">DraggableState</a></code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onDelta</code></td>
               <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/DraggableState.html">DraggableState</a>&nbsp;state</code></td>
               <td>
@@ -183,10 +183,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onDelta</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableState.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableState.html
index 2d627b6..10be7b0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableState.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/DraggableState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -48,10 +48,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;delta</code></td>
               <td>
@@ -72,10 +72,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a>&nbsp;dragPriority</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/FlingBehavior.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/FlingBehavior.html
index de86173..bc4d811 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/FlingBehavior.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/FlingBehavior.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
@@ -42,10 +42,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;initialVelocity</code></td>
               <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ForEachGestureKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ForEachGestureKt.html
index 7f7514f..6d875e0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ForEachGestureKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ForEachGestureKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/GestureCancellationException.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/GestureCancellationException.html
index c584592..bc7429e 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/GestureCancellationException.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/GestureCancellationException.html
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/gestures/GestureCancellationException.html#GestureCancellationException(kotlin.String)">GestureCancellationException</a>(<a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;message)</code></div>
@@ -80,15 +80,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
@@ -161,15 +161,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/Orientation.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/Orientation.html
index 3787e88..2f95d78 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/Orientation.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/Orientation.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/Orientation.html#Horizontal">Horizontal</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/PressGestureScope.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/PressGestureScope.html
index 1ce907e..c30931e 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/PressGestureScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/PressGestureScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -41,15 +41,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/ui/unit/Density.html">androidx.compose.ui.unit.Density</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default int</code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/ui/unit/Density.html">androidx.compose.ui.unit.Density</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract float</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollExtensionsKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollExtensionsKt.html
index a9ec2b5..a861485 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollExtensionsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollExtensionsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -53,10 +53,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -76,10 +76,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -99,10 +99,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -116,10 +116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -133,10 +133,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.foundation.gestures.ScrollableState).animateScrollBy(kotlin.Float,androidx.compose.animation.core.AnimationSpec)">animateScrollBy</a></code></td>
               <td>
@@ -155,10 +155,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a>&nbsp;scrollPriority</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollScope.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollScope.html
index 91a18ef..c8a372d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableDefaults.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableDefaults.html
index 7121009..f4d4579 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/ScrollableDefaults.html">ScrollableDefaults</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/FlingBehavior.html">FlingBehavior</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableKt.html
index 75c24da..3b77012 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -69,10 +69,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/ScrollableState.html">ScrollableState</a>&nbsp;state</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableState.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableState.html
index 76bd932..6153fa7 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableState.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/LazyListState.html">LazyListState</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.foundation.gestures.ScrollableState).animateScrollBy(kotlin.Float,androidx.compose.animation.core.AnimationSpec)">animateScrollBy</a></code></td>
             <td></td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
@@ -103,10 +103,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final float</code></td>
             <td>
@@ -148,10 +148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;delta</code></td>
               <td>
@@ -165,10 +165,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -195,10 +195,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -241,10 +241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -275,10 +275,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.foundation.gestures.ScrollableState).animateScrollBy(kotlin.Float,androidx.compose.animation.core.AnimationSpec)">animateScrollBy</a></code></td>
               <td>
@@ -297,10 +297,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a>&nbsp;scrollPriority</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableStateKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableStateKt.html
index 5e957e5..3bb5c6c 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableStateKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/ScrollableStateKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/ScrollableState.html">ScrollableState</a></code></td>
             <td>
@@ -46,10 +46,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&nbsp;consumeScrollDelta</code></td>
               <td>
@@ -69,10 +69,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&nbsp;consumeScrollDelta</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TapGestureDetectorKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TapGestureDetectorKt.html
index 0fa1a7d..2b1ad82 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TapGestureDetectorKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TapGestureDetectorKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformGestureDetectorKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformGestureDetectorKt.html
index 347eafb..6ac0ed6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformGestureDetectorKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformGestureDetectorKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformScope.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformScope.html
index ab16abc..e43cdce 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;zoomChange</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableKt.html
index 572df2f..b8d6335 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/TransformableState.html">TransformableState</a>&nbsp;state</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableState.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableState.html
index fa305f1..6e35b01 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableState.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final void</code></td>
             <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&nbsp;offset</code></td>
               <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;degrees</code></td>
               <td>
@@ -186,10 +186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;zoomFactor</code></td>
               <td>
@@ -214,10 +214,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&nbsp;offset</code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;degrees</code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a>&nbsp;terminationPriority</code></td>
               <td>
@@ -280,10 +280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;zoomFactor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableStateKt.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableStateKt.html
index f21e7e8..c94c880 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableStateKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/TransformableStateKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/gestures/TransformableState.html">TransformableState</a></code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function3&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onTransformation</code></td>
               <td>
@@ -117,10 +117,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&nbsp;offset</code></td>
               <td>
@@ -145,10 +145,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;degrees</code></td>
               <td>
@@ -173,10 +173,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;zoomFactor</code></td>
               <td>
@@ -201,10 +201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&nbsp;offset</code></td>
               <td>
@@ -224,10 +224,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function3&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onTransformation</code></td>
               <td>
@@ -246,10 +246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;degrees</code></td>
               <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a>&nbsp;terminationPriority</code></td>
               <td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;zoomFactor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/gestures/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/gestures/package-summary.html
index 69cb9f8..16c5039 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/gestures/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/gestures/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/DragScope.html">DragScope</a></code></td>
             <td>
@@ -64,7 +64,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/DragGestureDetectorKt.html">DragGestureDetectorKt</a></code></td>
             <td></td>
@@ -111,7 +111,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/Orientation.html">Orientation</a></code></td>
             <td>
@@ -124,7 +124,7 @@
     <h2>Exceptions</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/GestureCancellationException.html">GestureCancellationException</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html
index 33a3108..e8fd594 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a></code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html#Cancel(androidx.compose.foundation.interaction.DragInteraction.Start)">Cancel</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a>&nbsp;start)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html
index 887afc0..72a0704 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html#Start()">Start</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Stop.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Stop.html
index 8b43f1d..c50d7b5 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Stop.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.Stop.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a></code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Stop.html#Stop(androidx.compose.foundation.interaction.DragInteraction.Start)">Stop</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a>&nbsp;start)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.html
index 32c6a27..41d3bec 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteraction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
                 <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteractionKt.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteractionKt.html
index 140bc50..e2ee9b7 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteractionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/DragInteractionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html
index 02efe3a..b3ff0b1 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).focusable(kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource)">focusable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html#Focus()">Focus</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html
index 1828d74..f61942a 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).focusable(kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource)">focusable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a></code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html#Unfocus(androidx.compose.foundation.interaction.FocusInteraction.Focus)">Unfocus</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a>&nbsp;focus)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.html
index f1e43b8..04deb04 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteraction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a></code></td>
                 <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).focusable(kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource)">focusable</a></code></td>
             <td></td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteractionKt.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteractionKt.html
index e398356..edc77db 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteractionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/FocusInteractionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/Interaction.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/Interaction.html
index 4510682..3f2954d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/Interaction.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/Interaction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.html">DragInteraction</a></code></td>
                 <td>
@@ -45,7 +45,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
                 <td>
@@ -106,10 +106,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSource.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSource.html
index 3542fd1..549d4c2 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSource.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSource.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
                 <td>
@@ -219,10 +219,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
             <td></td>
@@ -239,10 +239,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/Interaction.html">Interaction</a>&gt;</code></td>
             <td>
@@ -257,10 +257,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
             <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
               <td>
@@ -461,10 +461,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSourceKt.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSourceKt.html
index 1982c81..c0b71ab 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSourceKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/InteractionSourceKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html
index 2ca1b03..6334c49 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
             <td></td>
@@ -38,10 +38,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -63,15 +63,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">androidx.compose.foundation.interaction.InteractionSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/Interaction.html">Interaction</a>&gt;</code></td>
                       <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html#tryEmit(androidx.compose.foundation.interaction.Interaction)">tryEmit</a></code></td>
               <td></td>
@@ -116,10 +116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/MutableInteractionSource.html#emit(androidx.compose.foundation.interaction.Interaction)">emit</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html
index f010108..9806a29 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a></code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html#Cancel(androidx.compose.foundation.interaction.PressInteraction.Press)">Cancel</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a>&nbsp;press)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html
index 1c21031..3e40a10 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html#Press(androidx.compose.ui.geometry.Offset)">Press</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Offset.html">Offset</a>&nbsp;pressPosition)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Release.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Release.html
index 9388689..52f35ab 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Release.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.Release.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a></code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Release.html#Release(androidx.compose.foundation.interaction.PressInteraction.Press)">Release</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a>&nbsp;press)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.html
index f3e490d..97fc4b0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteraction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html">PressInteraction.Cancel</a></code></td>
                 <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/PressInteraction.Cancel.html">PressInteraction.Cancel</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteractionKt.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteractionKt.html
index 2fa1dfa..d9db2ce 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteractionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/PressInteractionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/interaction/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/interaction/package-summary.html
index e7a4d8c..33ac837 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/interaction/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/interaction/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.html">DragInteraction</a></code></td>
             <td>
@@ -52,7 +52,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/AlignmentLineKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/AlignmentLineKt.html
index b209e21..cabda63 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/AlignmentLineKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/AlignmentLineKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -74,10 +74,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/layout/AlignmentLine.html">AlignmentLine</a>&nbsp;alignmentLine</code></td>
               <td>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFromBaseline(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFromBaseline</a></code></td>
               <td>
@@ -140,10 +140,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/layout/AlignmentLine.html">AlignmentLine</a>&nbsp;alignmentLine</code></td>
               <td>
@@ -169,10 +169,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFromBaseline(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFromBaseline</a></code></td>
               <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFrom(androidx.compose.ui.layout.AlignmentLine,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFrom</a></code></td>
               <td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFrom(androidx.compose.ui.layout.AlignmentLine,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFrom</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Absolute.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Absolute.html
index dbf0fdd..79d8cd4 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Absolute.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Absolute.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a>&nbsp;alignment</code></td>
               <td>
@@ -179,10 +179,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;space</code></td>
               <td>
@@ -202,10 +202,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;space</code></td>
               <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;space</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html
index 622d399..24c0e2a 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html">Arrangement.HorizontalOrVertical</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -81,10 +81,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;totalSize</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html
index d266a8c..b20dae1 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -34,15 +34,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html">androidx.compose.foundation.layout.Arrangement.Horizontal</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -59,7 +59,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/layout/Arrangement.Vertical.html">androidx.compose.foundation.layout.Arrangement.Vertical</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Vertical.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Vertical.html
index 7c4cd12..67404b4 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Vertical.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.Vertical.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html">Arrangement.HorizontalOrVertical</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -81,10 +81,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;totalSize</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.html
index 6447e60..19a12a0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/Arrangement.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/Arrangement.Absolute.html">Arrangement.Absolute</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/Arrangement.Vertical.html">Arrangement.Vertical</a></code></td>
             <td>
@@ -122,10 +122,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a>&nbsp;alignment</code></td>
               <td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Alignment.Vertical.html">Alignment.Vertical</a>&nbsp;alignment</code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;space</code></td>
               <td>
@@ -284,10 +284,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;space</code></td>
               <td>
@@ -312,10 +312,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;space</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/AspectRatioKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/AspectRatioKt.html
index 4f8c4d0..3892b00 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/AspectRatioKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/AspectRatioKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -46,10 +46,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;ratio</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxKt.html
index fea3cd6..be522cf 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -81,10 +81,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -157,10 +157,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxScope.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxScope.html
index 039071e..83ba3c0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxScope.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html">BoxWithConstraintsScope</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsKt.html
index ae22145..66c5136 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -57,10 +57,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html
index 5645769..98ddce6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Constraints.html">Constraints</a></code></td>
             <td>
@@ -62,15 +62,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/layout/BoxScope.html">androidx.compose.foundation.layout.BoxScope</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
                       <td>
@@ -108,10 +108,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
@@ -152,10 +152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnKt.html
index 68beeca..37da69a 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#Row(androidx.compose.ui.Modifier,androidx.compose.foundation.layout.Arrangement.Horizontal,androidx.compose.ui.Alignment.Vertical,kotlin.Function1)">Row</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnScope.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnScope.html
index f9a2924..22cd129 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/ColumnScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -235,10 +235,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;fill</code></td>
               <td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;visible</code></td>
               <td>
@@ -331,10 +331,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -413,10 +413,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visibleState</code></td>
               <td>
@@ -454,10 +454,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/ExperimentalLayoutApi.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/ExperimentalLayoutApi.html
index bedd991..8e9cd00 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/ExperimentalLayoutApi.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/ExperimentalLayoutApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/layout/ExperimentalLayoutApi.html#ExperimentalLayoutApi()">ExperimentalLayoutApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicKt.html
index fcd7b79..23f21d6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicSize.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicSize.html
index f64ffab..296321f 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicSize.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/IntrinsicSize.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/IntrinsicSize.html#Max">Max</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/LayoutScopeMarker.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/LayoutScopeMarker.html
index f26a5f7..2d96c26 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/LayoutScopeMarker.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/LayoutScopeMarker.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/layout/LayoutScopeMarker.html#LayoutScopeMarker()">LayoutScopeMarker</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/OffsetKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/OffsetKt.html
index 7fc9c10..f434137 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/OffsetKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/OffsetKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).offset(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">offset</a></code></td>
               <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).absoluteOffset(kotlin.Function1)">absoluteOffset</a></code></td>
               <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).absoluteOffset(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">absoluteOffset</a></code></td>
               <td>
@@ -191,10 +191,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).absoluteOffset(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">absoluteOffset</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingKt.html
index f521c50..23021c6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/PaddingValues.html">PaddingValues</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html
index 0d4d8b3..e812b3f 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html#Absolute(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">Absolute</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;left,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;top,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;right,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;bottom<br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.html
index 336f871..81b837c 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/PaddingValues.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html">PaddingValues.Absolute</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/PaddingValues.Absolute.html">PaddingValues.Absolute</a></code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/RowKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/RowKt.html
index 8781d83..3bf1004 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/RowKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/RowKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/package-summary.html#Column(androidx.compose.ui.Modifier,androidx.compose.foundation.layout.Arrangement.Vertical,androidx.compose.ui.Alignment.Horizontal,kotlin.Function1)">Column</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/RowScope.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/RowScope.html
index 23e4f19..2af4e30 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/RowScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/RowScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -169,10 +169,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/RowScope.html#(androidx.compose.ui.Modifier).alignByBaseline()">alignByBaseline</a></code></td>
               <td>
@@ -259,10 +259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/RowScope.html#(androidx.compose.ui.Modifier).alignBy(androidx.compose.ui.layout.HorizontalAlignmentLine)">alignBy</a></code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;fill</code></td>
               <td>
@@ -343,10 +343,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;visible</code></td>
               <td>
@@ -384,10 +384,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -437,10 +437,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;visibleState</code></td>
               <td>
@@ -478,10 +478,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -539,10 +539,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/SizeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/SizeKt.html
index 36ad40a..2c86f34 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/SizeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/SizeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -230,10 +230,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;fraction</code></td>
               <td>
@@ -277,10 +277,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;fraction</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;fraction</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/SpacerKt.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/SpacerKt.html
index a2f2588..dba4f5b 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/SpacerKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/SpacerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -53,10 +53,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/layout/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/layout/package-summary.html
index e85e084..20247cc 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/layout/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/layout/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/ExperimentalLayoutApi.html">ExperimentalLayoutApi</a></code></td>
             <td></td>
@@ -24,7 +24,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -79,7 +79,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/AlignmentLineKt.html">AlignmentLineKt</a></code></td>
             <td></td>
@@ -136,7 +136,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/layout/IntrinsicSize.html">IntrinsicSize</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html
index 698f554..0f55aab 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html#Adaptive(androidx.compose.ui.unit.Dp)">Adaptive</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;minSize)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Fixed.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Fixed.html
index c02f50b..5555e86 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Fixed.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.Fixed.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/lazy/GridCells.Fixed.html#Fixed(kotlin.Int)">Fixed</a>(int&nbsp;count)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.html
index d5074b4..98900c1 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/GridCells.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html">GridCells.Adaptive</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a><a href="/reference/androidx/compose/foundation/lazy/GridCells.Adaptive.html">GridCells.Adaptive</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/lazy/GridCells.html#GridCells()">GridCells</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyDslKt.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyDslKt.html
index c1a2f88..e122468 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyDslKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyDslKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -246,10 +246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;&nbsp;key</code></td>
               <td>
@@ -275,10 +275,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;&nbsp;key</code></td>
               <td>
@@ -303,10 +303,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;items</code></td>
               <td>
@@ -337,10 +337,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T[]&nbsp;items</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridKt.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridKt.html
index 2412196..d7ebaf1 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -66,10 +66,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/GridCells.html">GridCells</a>&nbsp;cells</code></td>
               <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;itemContent</code></td>
               <td>
@@ -136,10 +136,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;itemContent</code></td>
               <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;items</code></td>
               <td>
@@ -186,10 +186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T[]&nbsp;items</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridScope.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridScope.html
index 4a105b3..42da552 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyGridScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a> void</code></td>
             <td>
@@ -85,10 +85,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;content</code></td>
               <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;count</code></td>
               <td>
@@ -137,10 +137,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;itemContent</code></td>
               <td>
@@ -160,10 +160,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;itemContent</code></td>
               <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;items</code></td>
               <td>
@@ -210,10 +210,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T[]&nbsp;items</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyItemScope.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyItemScope.html
index e413941..5216fd7 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyItemScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyItemScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListItemInfo.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListItemInfo.html
index 84bc0dd..9a95f2d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListItemInfo.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListItemInfo.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/LazyListLayoutInfo.html">LazyListLayoutInfo</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract int</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListLayoutInfo.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListLayoutInfo.html
index 912d536..6fa2e84 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListLayoutInfo.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListLayoutInfo.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract int</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListScope.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListScope.html
index e45c71f..5c244c0 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final void</code></td>
             <td>
@@ -92,10 +92,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;key</code></td>
               <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;count</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;key</code></td>
               <td>
@@ -208,10 +208,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;&nbsp;key</code></td>
               <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> item,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;&nbsp;key</code></td>
               <td>
@@ -265,10 +265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;items</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T[]&nbsp;items</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.Companion.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.Companion.html
index 7c68335..80e8470 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyListState.html">LazyListState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.html
index 486e06f..9abab59 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListState.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/LazyListState.Companion.html">LazyListState.Companion</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/lazy/LazyListState.html#LazyListState(kotlin.Int,kotlin.Int)">LazyListState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;firstVisibleItemIndex,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;firstVisibleItemScrollOffset<br>)</code></div>
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -163,10 +163,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;firstVisibleItemIndex</code></td>
               <td>
@@ -192,10 +192,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;index</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;delta</code></td>
               <td>
@@ -239,10 +239,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -269,10 +269,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;index</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListStateKt.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListStateKt.html
index 8d8dea6..919d27f 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListStateKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyListStateKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/lazy/LazyListState.html">LazyListState</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;initialFirstVisibleItemIndex</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyScopeMarker.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyScopeMarker.html
index b6d6142..4071c79 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyScopeMarker.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/LazyScopeMarker.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/lazy/LazyScopeMarker.html#LazyScopeMarker()">LazyScopeMarker</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/lazy/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/lazy/package-summary.html
index d329d07..77f3272 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/lazy/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/lazy/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/LazyScopeMarker.html">LazyScopeMarker</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/LazyGridScope.html">LazyGridScope</a></code></td>
             <td>
@@ -59,7 +59,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/lazy/GridCells.html">GridCells</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/package-summary.html
index 476bd8a..ed7e3ae 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a></code></td>
             <td></td>
@@ -24,7 +24,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/Indication.html">Indication</a></code></td>
             <td>
@@ -43,7 +43,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/AtomicLong.html">AtomicLong</a></code></td>
             <td></td>
@@ -124,7 +124,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/MutatePriority.html">MutatePriority</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableGroupKt.html b/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableGroupKt.html
index d93535c..ff8b677 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableGroupKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableGroupKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableKt.html
index b599600..e941cec 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/selection/SelectableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/selection/ToggleableKt.html b/testData/compose/docs/reference/androidx/compose/foundation/selection/ToggleableKt.html
index 669e6fd..32b97a4 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/selection/ToggleableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/selection/ToggleableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -72,10 +72,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;value</code></td>
               <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).triStateToggleable(androidx.compose.ui.state.ToggleableState,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function0)">triStateToggleable</a></code></td>
               <td>
@@ -142,10 +142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;value</code></td>
               <td>
@@ -188,10 +188,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).triStateToggleable(androidx.compose.ui.state.ToggleableState,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function0)">triStateToggleable</a></code></td>
               <td>
@@ -230,10 +230,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a>&nbsp;state</code></td>
               <td>
@@ -265,10 +265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).toggleable(kotlin.Boolean,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function1)">toggleable</a></code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a>&nbsp;state</code></td>
               <td>
@@ -354,10 +354,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).toggleable(kotlin.Boolean,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function1)">toggleable</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/selection/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/selection/package-summary.html
index c11cee3..44fcc79 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/selection/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/selection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/selection/SelectableGroupKt.html">SelectableGroupKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html
index 7e6eef6..fd2b4ef 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html#AbsoluteCutCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">AbsoluteCutCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topLeft,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topRight,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomRight,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomLeft<br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topLeft</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;size</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShapeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShapeKt.html
index 82a8348..8fa3249 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShapeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShapeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;corner</code></td>
               <td>
@@ -102,10 +102,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;size</code></td>
               <td>
@@ -124,10 +124,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;size</code></td>
               <td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;percent</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;topLeftPercent</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html
index d9454f4..81e9ac3 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html#AbsoluteRoundedCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">AbsoluteRoundedCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topLeft,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topRight,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomRight,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomLeft<br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html">AbsoluteRoundedCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topLeft</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;size</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShapeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShapeKt.html
index a97158d..acb13aa 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShapeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShapeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html">AbsoluteRoundedCornerShape</a></code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;corner</code></td>
               <td>
@@ -102,10 +102,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;size</code></td>
               <td>
@@ -124,10 +124,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;size</code></td>
               <td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;percent</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;topLeftPercent</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerBasedShape.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerBasedShape.html
index 9ae7c28..435d3b7 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerBasedShape.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerBasedShape.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
                 <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
             <td>
@@ -108,10 +108,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html#CornerBasedShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">CornerBasedShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topEnd,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomEnd,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomStart<br>)</code></div>
@@ -124,10 +124,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
             <td>
@@ -187,10 +187,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -228,10 +228,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;all</code></td>
               <td>
@@ -294,10 +294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;size</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSize.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSize.html
index 0da818b..e922ce9 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSize.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSize.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;shapeSize</code></td>
               <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSizeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSizeKt.html
index fe3b732..0885f2e 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSizeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/CornerSizeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
             <td>
@@ -76,10 +76,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;size</code></td>
               <td>
@@ -98,10 +98,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;size</code></td>
               <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;percent</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShape.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShape.html
index a66da9c..e5f5d7d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShape.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/shape/CutCornerShape.html#CutCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">CutCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topEnd,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomEnd,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomStart<br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CutCornerShape.html">CutCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;size</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShapeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShapeKt.html
index 47b8aab..02dffda 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShapeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/CutCornerShapeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CutCornerShape.html">CutCornerShape</a></code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;corner</code></td>
               <td>
@@ -102,10 +102,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;size</code></td>
               <td>
@@ -124,10 +124,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;size</code></td>
               <td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;percent</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;topStartPercent</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/GenericShape.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/GenericShape.html
index 6877918..8c8edc5 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/GenericShape.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/GenericShape.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/shape/GenericShape.html#GenericShape(kotlin.Function3)">GenericShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function3&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Path.html">Path</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/LayoutDirection.html">LayoutDirection</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;builder<br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Outline.html">Outline</a></code></td>
             <td>
@@ -65,10 +65,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function3&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Path.html">Path</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/LayoutDirection.html">LayoutDirection</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;builder</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShape.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShape.html
index adefc38..3f5f45d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShape.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/shape/RoundedCornerShape.html#RoundedCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">RoundedCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topEnd,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomEnd,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;bottomStart<br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;topStart</code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/geometry/Size.html">Size</a>&nbsp;size</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShapeKt.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShapeKt.html
index e717890..6a1575d 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShapeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/RoundedCornerShapeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>&nbsp;corner</code></td>
               <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;size</code></td>
               <td>
@@ -148,10 +148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;size</code></td>
               <td>
@@ -170,10 +170,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;percent</code></td>
               <td>
@@ -202,10 +202,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;topStartPercent</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/shape/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/shape/package-summary.html
index cad92da..cab1719 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/shape/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/shape/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextFieldKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextFieldKt.html
index bd2d02e..bd9b692 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextFieldKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextFieldKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -116,10 +116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;value</code></td>
               <td>
@@ -295,10 +295,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/TextFieldValue.html">TextFieldValue</a>&nbsp;value</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextKt.html
index 4c63e6d..bf4e0ee 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/BasicTextKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -45,10 +45,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;text</code></td>
               <td>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/AnnotatedString.html">AnnotatedString</a>&nbsp;text</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/ClickableTextKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/ClickableTextKt.html
index 3d1d67b..295e678 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/ClickableTextKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/ClickableTextKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/AnnotatedString.html">AnnotatedString</a>&nbsp;text</code></td>
               <td>
@@ -139,10 +139,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/package-summary.html#BasicText(kotlin.String,androidx.compose.ui.Modifier,androidx.compose.ui.text.TextStyle,kotlin.Function1,androidx.compose.ui.text.style.TextOverflow,kotlin.Boolean,kotlin.Int)">BasicText</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContent.html b/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContent.html
index 73fb6c7..d2bf304 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContent.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContent.html
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/package-summary.html#BasicText(kotlin.String,androidx.compose.ui.Modifier,androidx.compose.ui.text.TextStyle,kotlin.Function1,androidx.compose.ui.text.style.TextOverflow,kotlin.Boolean,kotlin.Int)">BasicText</a></code></td>
             <td></td>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;</code></td>
             <td>
@@ -101,10 +101,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/text/InlineTextContent.html#InlineTextContent(androidx.compose.ui.text.Placeholder,kotlin.Function1)">InlineTextContent</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/Placeholder.html">Placeholder</a>&nbsp;placeholder,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;children<br>)</code></div>
@@ -127,10 +127,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/ui/text/Placeholder.html">Placeholder</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContentKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContentKt.html
index d87cd80..ceaf481 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContentKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/InlineTextContentKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final void</code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;id</code></td>
               <td>
@@ -101,10 +101,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a>&nbsp;kotlin.IllegalArgumentException</code></td>
               <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/InlineTextContent.html">InlineTextContent</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/InternalFoundationTextApi.html b/testData/compose/docs/reference/androidx/compose/foundation/text/InternalFoundationTextApi.html
index 334ae57..e788f70 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/InternalFoundationTextApi.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/InternalFoundationTextApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/text/InternalFoundationTextApi.html#InternalFoundationTextApi()">InternalFoundationTextApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionScope.html b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionScope.html
index ae13f94..ae2c236 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionScope.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.Companion.html b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.Companion.html
index 4064c0c..afc5c10 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActions.html">KeyboardActions</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.html b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.html
index 029a9cb..8dfb025 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActions.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/KeyboardActions.Companion.html">KeyboardActions.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;</code></td>
             <td>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/text/KeyboardActions.html#KeyboardActions(kotlin.Function1,kotlin.Function1,kotlin.Function1,kotlin.Function1,kotlin.Function1,kotlin.Function1)">KeyboardActions</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onDone,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onGo,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onNext,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onPrevious,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onSearch,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onSend<br>)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionsKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionsKt.html
index a720c3e..7c9b740 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardActionsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardActions.html">KeyboardActions</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.Companion.html b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.Companion.html
index abbb707..db5b3c4 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardOptions.html">KeyboardOptions</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.html b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.html
index df3e073..adc92cb 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/KeyboardOptions.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/KeyboardOptions.Companion.html">KeyboardOptions.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -70,10 +70,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/text/KeyboardOptions.html#KeyboardOptions(androidx.compose.ui.text.input.KeyboardCapitalization,kotlin.Boolean,androidx.compose.ui.text.input.KeyboardType,androidx.compose.ui.text.input.ImeAction)">KeyboardOptions</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/KeyboardCapitalization.html">KeyboardCapitalization</a>&nbsp;capitalization,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;autoCorrect,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/KeyboardType.html">KeyboardType</a>&nbsp;keyboardType,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/ImeAction.html">ImeAction</a>&nbsp;imeAction<br>)</code></div>
@@ -86,10 +86,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/KeyboardOptions.html">KeyboardOptions</a></code></td>
             <td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/KeyboardCapitalization.html">KeyboardCapitalization</a>&nbsp;capitalization</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/text/package-summary.html
index 93d35ed..b19baa3 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/InternalFoundationTextApi.html">InternalFoundationTextApi</a></code></td>
             <td></td>
@@ -20,7 +20,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a></code></td>
             <td>
@@ -33,7 +33,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/BasicTextFieldKt.html">BasicTextFieldKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/SelectionContainerKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/SelectionContainerKt.html
index 17b0abc..e729889 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/SelectionContainerKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/SelectionContainerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColors.html b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColors.html
index 83cba27..3082e3a 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColors.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/foundation/text/selection/TextSelectionColors.html#TextSelectionColors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">TextSelectionColors</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;handleColor,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;backgroundColor<br>)</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColorsKt.html b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColorsKt.html
index 09ecaf9..c9460ec 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColorsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/TextSelectionColorsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/text/selection/TextSelectionColors.html">TextSelectionColors</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/package-summary.html b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/package-summary.html
index d26668d..a0372e6 100644
--- a/testData/compose/docs/reference/androidx/compose/foundation/text/selection/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/foundation/text/selection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/foundation/text/selection/SelectionContainerKt.html">SelectionContainerKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/AndroidAlertDialogKt.html b/testData/compose/docs/reference/androidx/compose/material/AndroidAlertDialogKt.html
index 30dd1ec..01cb673 100644
--- a/testData/compose/docs/reference/androidx/compose/material/AndroidAlertDialogKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/AndroidAlertDialogKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onDismissRequest</code></td>
               <td>
@@ -215,10 +215,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onDismissRequest</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/AndroidMenuKt.html b/testData/compose/docs/reference/androidx/compose/material/AndroidMenuKt.html
index f118d82..d486cff 100644
--- a/testData/compose/docs/reference/androidx/compose/material/AndroidMenuKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/AndroidMenuKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -87,10 +87,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;expanded</code></td>
               <td>
@@ -157,10 +157,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/AppBarDefaults.html b/testData/compose/docs/reference/androidx/compose/material/AppBarDefaults.html
index 8885c79..3a5b04d 100644
--- a/testData/compose/docs/reference/androidx/compose/material/AppBarDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/AppBarDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/AppBarKt.html b/testData/compose/docs/reference/androidx/compose/material/AppBarKt.html
index 6ca8f25..7572b28 100644
--- a/testData/compose/docs/reference/androidx/compose/material/AppBarKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/AppBarKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -77,10 +77,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -161,10 +161,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;title</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldDefaults.html b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldDefaults.html
index 6b2a814..c198774 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldKt.html b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldKt.html
index daadaae..9756045 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -136,10 +136,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;appBar</code></td>
               <td>
@@ -260,10 +260,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BackdropValue.html">BackdropValue</a>&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.Companion.html
index ed8c9e4..b8b42d6 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BackdropScaffoldState.html">BackdropScaffoldState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.html b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.html
index d05dfba..edcd50c 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BackdropScaffoldState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BackdropScaffoldState.Companion.html">BackdropScaffoldState.Companion</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/BackdropScaffoldState.html#BackdropScaffoldState(androidx.compose.material.BackdropValue,androidx.compose.animation.core.AnimationSpec,kotlin.Function1,androidx.compose.material.SnackbarHostState)">BackdropScaffoldState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BackdropValue.html">BackdropValue</a>&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&nbsp;animationSpec,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BackdropValue.html">BackdropValue</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a>&nbsp;snackbarHostState<br>)</code></div>
@@ -97,10 +97,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -122,15 +122,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
                       <td>
@@ -171,15 +171,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BackdropValue.html">BackdropValue</a></code></td>
                       <td>
@@ -261,10 +261,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BackdropValue.html">BackdropValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -302,10 +302,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BackdropValue.html b/testData/compose/docs/reference/androidx/compose/material/BackdropValue.html
index 34d1e6d..3bfae4f 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BackdropValue.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BackdropValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BackdropValue.html#Concealed">Concealed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.Companion.html
index cb1036f..5abc0a0 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerState.html">BottomDrawerState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.html b/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.html
index d5dce0b..e622b7f 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomDrawerState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BottomDrawerState.Companion.html">BottomDrawerState.Companion</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/BottomDrawerState.html#BottomDrawerState(androidx.compose.material.BottomDrawerValue,kotlin.Function1)">BottomDrawerState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange<br>)</code></div>
@@ -97,10 +97,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -129,15 +129,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
                       <td>
@@ -178,15 +178,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a></code></td>
                       <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -297,10 +297,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a>&nbsp;kotlinx.coroutines.CancellationException</code></td>
               <td>
@@ -319,10 +319,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a>&nbsp;kotlinx.coroutines.CancellationException</code></td>
               <td>
@@ -341,10 +341,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a>&nbsp;kotlinx.coroutines.CancellationException</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomDrawerValue.html b/testData/compose/docs/reference/androidx/compose/material/BottomDrawerValue.html
index 22faa85..66d9b88 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomDrawerValue.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomDrawerValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BottomDrawerValue.html#Closed">Closed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomNavigationDefaults.html b/testData/compose/docs/reference/androidx/compose/material/BottomNavigationDefaults.html
index ea1222a..0d09906 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomNavigationDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomNavigationDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomNavigationKt.html b/testData/compose/docs/reference/androidx/compose/material/BottomNavigationKt.html
index e37399d..653fe1b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomNavigationKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomNavigationKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -72,10 +72,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldDefaults.html b/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldDefaults.html
index 4305716..216a187 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetScaffoldDefaults.html">BottomSheetScaffoldDefaults</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldKt.html b/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldKt.html
index c462611..6243064 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -152,10 +152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;sheetContent</code></td>
               <td>
@@ -294,10 +294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>&nbsp;drawerState</code></td>
               <td>
@@ -328,10 +328,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a>&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldState.html b/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldState.html
index 23da171..379c3f7 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomSheetScaffoldState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetState.html">BottomSheetState</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/BottomSheetScaffoldState.html#BottomSheetScaffoldState(androidx.compose.material.DrawerState,androidx.compose.material.BottomSheetState,androidx.compose.material.SnackbarHostState)">BottomSheetScaffoldState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>&nbsp;drawerState,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetState.html">BottomSheetState</a>&nbsp;bottomSheetState,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a>&nbsp;snackbarHostState<br>)</code></div>
@@ -84,10 +84,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>&nbsp;drawerState</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.Companion.html
index fa2cfe8..4f3a53f 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetState.html">BottomSheetState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.html b/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.html
index ae1c80e..7b4b159 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomSheetState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BottomSheetState.Companion.html">BottomSheetState.Companion</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -74,10 +74,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/BottomSheetState.html#BottomSheetState(androidx.compose.material.BottomSheetValue,androidx.compose.animation.core.AnimationSpec,kotlin.Function1)">BottomSheetState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a>&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&nbsp;animationSpec,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange<br>)</code></div>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -115,15 +115,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
                       <td>
@@ -164,15 +164,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a></code></td>
                       <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -284,10 +284,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
@@ -306,10 +306,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/BottomSheetValue.html b/testData/compose/docs/reference/androidx/compose/material/BottomSheetValue.html
index c7cb12b..25beb2e 100644
--- a/testData/compose/docs/reference/androidx/compose/material/BottomSheetValue.html
+++ b/testData/compose/docs/reference/androidx/compose/material/BottomSheetValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BottomSheetValue.html#Collapsed">Collapsed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ButtonColors.html b/testData/compose/docs/reference/androidx/compose/material/ButtonColors.html
index 6c67c6a..8089fd7 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ButtonColors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ButtonColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -47,10 +47,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -69,10 +69,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ButtonDefaults.html b/testData/compose/docs/reference/androidx/compose/material/ButtonDefaults.html
index c9c017e..42745cb 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ButtonDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ButtonDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/PaddingValues.html">PaddingValues</a></code></td>
             <td>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ButtonColors.html">ButtonColors</a></code></td>
             <td>
@@ -234,10 +234,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;backgroundColor</code></td>
               <td>
@@ -274,10 +274,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;defaultElevation</code></td>
               <td>
@@ -308,10 +308,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;backgroundColor</code></td>
               <td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;backgroundColor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ButtonElevation.html b/testData/compose/docs/reference/androidx/compose/material/ButtonElevation.html
index 99063ad..80d5b34 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ButtonElevation.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ButtonElevation.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ButtonKt.html b/testData/compose/docs/reference/androidx/compose/material/ButtonKt.html
index 2487998..597047e 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ButtonKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ButtonKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -79,10 +79,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
@@ -159,10 +159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
@@ -239,10 +239,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/CardKt.html b/testData/compose/docs/reference/androidx/compose/material/CardKt.html
index f878a6f..552daae 100644
--- a/testData/compose/docs/reference/androidx/compose/material/CardKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/CardKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -55,10 +55,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/CheckboxColors.html b/testData/compose/docs/reference/androidx/compose/material/CheckboxColors.html
index 2359c69..26e3d33 100644
--- a/testData/compose/docs/reference/androidx/compose/material/CheckboxColors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/CheckboxColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -82,10 +82,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -110,10 +110,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a>&nbsp;state</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/CheckboxDefaults.html b/testData/compose/docs/reference/androidx/compose/material/CheckboxDefaults.html
index 450eaf8..b680799 100644
--- a/testData/compose/docs/reference/androidx/compose/material/CheckboxDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/CheckboxDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/CheckboxDefaults.html">CheckboxDefaults</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/CheckboxColors.html">CheckboxColors</a></code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;checkedColor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/CheckboxKt.html b/testData/compose/docs/reference/androidx/compose/material/CheckboxKt.html
index 49eed10..c4ed94b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/CheckboxKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/CheckboxKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -57,10 +57,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;checked</code></td>
               <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#TriStateCheckbox(androidx.compose.ui.state.ToggleableState,kotlin.Function0,androidx.compose.ui.Modifier,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.material.CheckboxColors)">TriStateCheckbox</a></code></td>
               <td>
@@ -166,10 +166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a>&nbsp;state</code></td>
               <td>
@@ -213,10 +213,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#Checkbox(kotlin.Boolean,kotlin.Function1,androidx.compose.ui.Modifier,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.material.CheckboxColors)">Checkbox</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/Colors.html b/testData/compose/docs/reference/androidx/compose/material/Colors.html
index 2c3ac3a..db9daa0 100644
--- a/testData/compose/docs/reference/androidx/compose/material/Colors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/Colors.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -121,10 +121,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/Colors.html#Colors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,kotlin.Boolean)">Colors</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;primary,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;primaryVariant,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;secondary,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;secondaryVariant,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;background,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;surface,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;error,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;onPrimary,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;onSecondary,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;onBackground,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;onSurface,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;onError,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;isLight<br>)</code></div>
@@ -137,10 +137,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/Colors.html">Colors</a></code></td>
             <td>
@@ -161,10 +161,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ColorsKt.html b/testData/compose/docs/reference/androidx/compose/material/ColorsKt.html
index 888d0b2..a171fe4 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ColorsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ColorsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -77,10 +77,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -102,10 +102,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#(androidx.compose.material.Colors).contentColorFor(androidx.compose.ui.graphics.Color)">contentColorFor</a></code></td>
               <td></td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#lightColors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">lightColors</a></code></td>
               <td></td>
@@ -184,10 +184,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#darkColors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">darkColors</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ContentAlpha.html b/testData/compose/docs/reference/androidx/compose/material/ContentAlpha.html
index ff883bc..3b21a0f 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ContentAlpha.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ContentAlpha.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ContentAlpha.html">ContentAlpha</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ContentAlphaKt.html b/testData/compose/docs/reference/androidx/compose/material/ContentAlphaKt.html
index 7bb6997..25d35c1 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ContentAlphaKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ContentAlphaKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ContentColorKt.html b/testData/compose/docs/reference/androidx/compose/material/ContentColorKt.html
index 7f33a22..fd899e6 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ContentColorKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ContentColorKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DismissDirection.html b/testData/compose/docs/reference/androidx/compose/material/DismissDirection.html
index a07a886..fe3b201 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DismissDirection.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DismissDirection.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/DismissDirection.html#EndToStart">EndToStart</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DismissState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/DismissState.Companion.html
index 60b7ded..f62fcfa 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DismissState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DismissState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissState.html">DismissState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissValue.html">DismissValue</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DismissState.html b/testData/compose/docs/reference/androidx/compose/material/DismissState.html
index 2b162aa..648046b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DismissState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DismissState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/DismissState.Companion.html">DismissState.Companion</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final <a href="/reference/androidx/compose/material/DismissDirection.html">DismissDirection</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/DismissState.html#DismissState(androidx.compose.material.DismissValue,kotlin.Function1)">DismissState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissValue.html">DismissValue</a>&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissValue.html">DismissValue</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange<br>)</code></div>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -115,15 +115,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
                       <td>
@@ -164,15 +164,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissValue.html">DismissValue</a></code></td>
                       <td>
@@ -245,10 +245,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissValue.html">DismissValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -274,10 +274,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissDirection.html">DismissDirection</a>&nbsp;direction</code></td>
               <td>
@@ -296,10 +296,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissDirection.html">DismissDirection</a>&nbsp;direction</code></td>
               <td>
@@ -318,10 +318,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DismissValue.html b/testData/compose/docs/reference/androidx/compose/material/DismissValue.html
index d5323d8..839a94d 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DismissValue.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DismissValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/DismissValue.html#Default">Default</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DividerKt.html b/testData/compose/docs/reference/androidx/compose/material/DividerKt.html
index 1ba2d19..99de9e4 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DividerKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DividerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;color</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DrawerDefaults.html b/testData/compose/docs/reference/androidx/compose/material/DrawerDefaults.html
index e2089ff..b934ba9 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DrawerDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DrawerDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DrawerKt.html b/testData/compose/docs/reference/androidx/compose/material/DrawerKt.html
index 1e3f864..dbedabc 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DrawerKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DrawerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;drawerContent</code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;drawerContent</code></td>
               <td>
@@ -320,10 +320,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a>&nbsp;kotlin.IllegalStateException</code></td>
               <td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -370,10 +370,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DrawerState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/DrawerState.Companion.html
index 763920a..b2eb7b1 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DrawerState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DrawerState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DrawerState.html b/testData/compose/docs/reference/androidx/compose/material/DrawerState.html
index 15491f3..f8e5972 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DrawerState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DrawerState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/DrawerState.Companion.html">DrawerState.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a></code></td>
             <td>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/DrawerState.html#DrawerState(androidx.compose.material.DrawerValue,kotlin.Function1)">DrawerState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange<br>)</code></div>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -176,10 +176,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>&nbsp;targetValue</code></td>
               <td>
@@ -233,10 +233,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
@@ -255,10 +255,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
@@ -277,10 +277,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerValue.html">DrawerValue</a>&nbsp;targetValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/DrawerValue.html b/testData/compose/docs/reference/androidx/compose/material/DrawerValue.html
index 5368259..9bc04c4 100644
--- a/testData/compose/docs/reference/androidx/compose/material/DrawerValue.html
+++ b/testData/compose/docs/reference/androidx/compose/material/DrawerValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/DrawerValue.html#Closed">Closed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ElevationOverlay.html b/testData/compose/docs/reference/androidx/compose/material/ElevationOverlay.html
index 815139b..15fb2a4 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ElevationOverlay.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ElevationOverlay.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ElevationOverlayKt.html b/testData/compose/docs/reference/androidx/compose/material/ElevationOverlayKt.html
index 622c402..91d3605 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ElevationOverlayKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ElevationOverlayKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/ElevationOverlay.html">ElevationOverlay</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ExperimentalMaterialApi.html b/testData/compose/docs/reference/androidx/compose/material/ExperimentalMaterialApi.html
index 5004449..5866246 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ExperimentalMaterialApi.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ExperimentalMaterialApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html#ExperimentalMaterialApi()">ExperimentalMaterialApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FabPosition.Companion.html b/testData/compose/docs/reference/androidx/compose/material/FabPosition.Companion.html
index a09ed7d..c9971c6 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FabPosition.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FabPosition.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/FabPosition.html">FabPosition</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FabPosition.html b/testData/compose/docs/reference/androidx/compose/material/FabPosition.html
index d47a2db..c492c6b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FabPosition.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FabPosition.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/FabPosition.Companion.html">FabPosition.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FixedThreshold.html b/testData/compose/docs/reference/androidx/compose/material/FixedThreshold.html
index f675ebf..4bda90d 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FixedThreshold.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FixedThreshold.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/FixedThreshold.html#FixedThreshold(androidx.compose.ui.unit.Dp)">FixedThreshold</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;offset)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>float</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;offset</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonDefaults.html b/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonDefaults.html
index 9ce0a92..beccb04 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/FloatingActionButtonDefaults.html">FloatingActionButtonDefaults</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/FloatingActionButtonElevation.html">FloatingActionButtonElevation</a></code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&nbsp;defaultElevation</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonElevation.html b/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonElevation.html
index d3dafe6..3539c02 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonElevation.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonElevation.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a>&nbsp;interactionSource</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonKt.html b/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonKt.html
index 37cb300..20b8bc2 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FloatingActionButtonKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -71,10 +71,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;text</code></td>
               <td>
@@ -152,10 +152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/FractionalThreshold.html b/testData/compose/docs/reference/androidx/compose/material/FractionalThreshold.html
index 1eafe7c..4f1289a 100644
--- a/testData/compose/docs/reference/androidx/compose/material/FractionalThreshold.html
+++ b/testData/compose/docs/reference/androidx/compose/material/FractionalThreshold.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/FractionalThreshold.html#FractionalThreshold(kotlin.Float)">FractionalThreshold</a>(float&nbsp;fraction)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>float</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;fraction</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/IconButtonKt.html b/testData/compose/docs/reference/androidx/compose/material/IconButtonKt.html
index 80c79fb..fb13d77 100644
--- a/testData/compose/docs/reference/androidx/compose/material/IconButtonKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/IconButtonKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;checked</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/IconKt.html b/testData/compose/docs/reference/androidx/compose/material/IconKt.html
index 82445c1..a485626 100644
--- a/testData/compose/docs/reference/androidx/compose/material/IconKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/IconKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -52,10 +52,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/vector/ImageVector.html">ImageVector</a>&nbsp;imageVector</code></td>
               <td>
@@ -92,10 +92,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/ImageBitmap.html">ImageBitmap</a>&nbsp;bitmap</code></td>
               <td>
@@ -132,10 +132,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/painter/Painter.html">Painter</a>&nbsp;painter</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ListItemKt.html b/testData/compose/docs/reference/androidx/compose/material/ListItemKt.html
index cdd11e3..79df084 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ListItemKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ListItemKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -311,10 +311,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/MaterialTheme.html b/testData/compose/docs/reference/androidx/compose/material/MaterialTheme.html
index 7687f9c..e6eec34 100644
--- a/testData/compose/docs/reference/androidx/compose/material/MaterialTheme.html
+++ b/testData/compose/docs/reference/androidx/compose/material/MaterialTheme.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/MaterialTheme.html">MaterialTheme</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/MaterialThemeKt.html b/testData/compose/docs/reference/androidx/compose/material/MaterialThemeKt.html
index bd20f8b..a38c22c 100644
--- a/testData/compose/docs/reference/androidx/compose/material/MaterialThemeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/MaterialThemeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -82,10 +82,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/Colors.html">Colors</a>&nbsp;colors</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/MenuDefaults.html b/testData/compose/docs/reference/androidx/compose/material/MenuDefaults.html
index 627f044..b12a8d7 100644
--- a/testData/compose/docs/reference/androidx/compose/material/MenuDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/MenuDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/PaddingValues.html">PaddingValues</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetDefaults.html b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetDefaults.html
index d58521e..cff218b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetKt.html b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetKt.html
index e4e15f8..3f87357 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -94,10 +94,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;sheetContent</code></td>
               <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a>&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.Companion.html
index 773d9cb..609a1e0 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ModalBottomSheetState.html">ModalBottomSheetState</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.html b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.html
index df209c3..1c5a023 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ModalBottomSheetState.Companion.html">ModalBottomSheetState.Companion</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/ModalBottomSheetState.html#ModalBottomSheetState(androidx.compose.material.ModalBottomSheetValue,androidx.compose.animation.core.AnimationSpec,kotlin.Function1)">ModalBottomSheetState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a>&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&nbsp;animationSpec,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange<br>)</code></div>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -108,15 +108,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
                       <td>
@@ -157,15 +157,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a></code></td>
                       <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a>&nbsp;initialValue</code></td>
               <td>
@@ -272,10 +272,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a>&nbsp;kotlinx.coroutines.CancellationException</code></td>
               <td>
@@ -294,10 +294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a>&nbsp;kotlinx.coroutines.CancellationException</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetValue.html b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetValue.html
index 7d9d020..2809289 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetValue.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ModalBottomSheetValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ModalBottomSheetValue.html#Expanded">Expanded</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/OutlinedTextFieldKt.html b/testData/compose/docs/reference/androidx/compose/material/OutlinedTextFieldKt.html
index b883ed4..4a453f2 100644
--- a/testData/compose/docs/reference/androidx/compose/material/OutlinedTextFieldKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/OutlinedTextFieldKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;value</code></td>
               <td>
@@ -213,10 +213,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/TextFieldValue.html">TextFieldValue</a>&nbsp;value</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorDefaults.html b/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorDefaults.html
index 26f7d0c..dee0484 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ProgressIndicatorDefaults.html">ProgressIndicatorDefaults</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorKt.html b/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorKt.html
index 9c51158..6899393 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ProgressIndicatorKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;progress</code></td>
               <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;color</code></td>
               <td>
@@ -185,10 +185,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;progress</code></td>
               <td>
@@ -221,10 +221,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;color</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/RadioButtonColors.html b/testData/compose/docs/reference/androidx/compose/material/RadioButtonColors.html
index 7787e1a..1546f62 100644
--- a/testData/compose/docs/reference/androidx/compose/material/RadioButtonColors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/RadioButtonColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/RadioButtonDefaults.html b/testData/compose/docs/reference/androidx/compose/material/RadioButtonDefaults.html
index 142c014..7d0798b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/RadioButtonDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/RadioButtonDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/RadioButtonDefaults.html">RadioButtonDefaults</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/RadioButtonColors.html">RadioButtonColors</a></code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;selectedColor</code></td>
               <td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/RadioButtonColors.html">RadioButtonColors</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/RadioButtonKt.html b/testData/compose/docs/reference/androidx/compose/material/RadioButtonKt.html
index a2d4ec4..52224fd 100644
--- a/testData/compose/docs/reference/androidx/compose/material/RadioButtonKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/RadioButtonKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ResistanceConfig.html b/testData/compose/docs/reference/androidx/compose/material/ResistanceConfig.html
index 39a8d31..1630ced 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ResistanceConfig.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ResistanceConfig.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/ResistanceConfig.html#ResistanceConfig(kotlin.Float,kotlin.Float,kotlin.Float)">ResistanceConfig</a>(float&nbsp;basis,&nbsp;float&nbsp;factorAtMin,&nbsp;float&nbsp;factorAtMax)</code></div>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;basis</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ScaffoldKt.html b/testData/compose/docs/reference/androidx/compose/material/ScaffoldKt.html
index e6bcd0c..73dc69c 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ScaffoldKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ScaffoldKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -355,10 +355,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>&nbsp;drawerState</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ScaffoldState.html b/testData/compose/docs/reference/androidx/compose/material/ScaffoldState.html
index 219e31a..614ef36 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ScaffoldState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ScaffoldState.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a></code></td>
             <td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/ScaffoldState.html#ScaffoldState(androidx.compose.material.DrawerState,androidx.compose.material.SnackbarHostState)">ScaffoldState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>&nbsp;drawerState,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a>&nbsp;snackbarHostState<br>)</code></div>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DrawerState.html">DrawerState</a>&nbsp;drawerState</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/Shapes.html b/testData/compose/docs/reference/androidx/compose/material/Shapes.html
index 6efab77..7693817 100644
--- a/testData/compose/docs/reference/androidx/compose/material/Shapes.html
+++ b/testData/compose/docs/reference/androidx/compose/material/Shapes.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/Shapes.html#Shapes(androidx.compose.foundation.shape.CornerBasedShape,androidx.compose.foundation.shape.CornerBasedShape,androidx.compose.foundation.shape.CornerBasedShape)">Shapes</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a>&nbsp;small,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a>&nbsp;medium,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a>&nbsp;large<br>)</code></div>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/Shapes.html">Shapes</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SliderColors.html b/testData/compose/docs/reference/androidx/compose/material/SliderColors.html
index 203abc4..db167cb 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SliderColors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SliderColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -77,10 +77,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -106,10 +106,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SliderDefaults.html b/testData/compose/docs/reference/androidx/compose/material/SliderDefaults.html
index 8cdc2fd..1dd0080 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SliderDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SliderDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SliderDefaults.html">SliderDefaults</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SliderColors.html">SliderColors</a></code></td>
             <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;thumbColor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SliderKt.html b/testData/compose/docs/reference/androidx/compose/material/SliderKt.html
index eacf418..d5d4698 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SliderKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SliderKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -74,10 +74,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarData.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarData.html
index b251771..86f473a 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarData.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarData.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarDefaults.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarDefaults.html
index 06c9895..a8cbdc9 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarDefaults.html">SnackbarDefaults</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarDuration.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarDuration.html
index 808ee65..807c256 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarDuration.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarDuration.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/SnackbarDuration.html#Indefinite">Indefinite</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarHostKt.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarHostKt.html
index f20830e..5bbc35a 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarHostKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarHostKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a>&nbsp;hostState</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarHostState.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarHostState.html
index 166c170..7f5258e 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarHostState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarHostState.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final <a href="/reference/androidx/compose/material/SnackbarData.html">SnackbarData</a></code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/SnackbarHostState.html#SnackbarHostState()">SnackbarHostState</a>()</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarResult.html">SnackbarResult</a></code></td>
             <td>
@@ -142,10 +142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;message</code></td>
               <td>
@@ -171,10 +171,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarResult.html">SnackbarResult</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarKt.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarKt.html
index 0b3202d..e557f0b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -133,10 +133,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -286,10 +286,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SnackbarData.html">SnackbarData</a>&nbsp;snackbarData</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SnackbarResult.html b/testData/compose/docs/reference/androidx/compose/material/SnackbarResult.html
index 1ac39fa..f887536 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SnackbarResult.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SnackbarResult.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/SnackbarResult.html#ActionPerformed">ActionPerformed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SurfaceKt.html b/testData/compose/docs/reference/androidx/compose/material/SurfaceKt.html
index 4212a4c..47b8867 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SurfaceKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SurfaceKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -172,10 +172,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onClick</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwipeProgress.html b/testData/compose/docs/reference/androidx/compose/material/SwipeProgress.html
index b49cb8e..54c77a8 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwipeProgress.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwipeProgress.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/material/SwipeProgress.html#SwipeProgress(kotlin.Any,kotlin.Any,kotlin.Float)">SwipeProgress</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;from,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;to,&nbsp;float&nbsp;fraction)</code></div>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;from</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwipeToDismissKt.html b/testData/compose/docs/reference/androidx/compose/material/SwipeToDismissKt.html
index d1cf0f8..290b3ba 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwipeToDismissKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwipeToDismissKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -137,10 +137,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissState.html">DismissState</a>&nbsp;state</code></td>
               <td>
@@ -189,10 +189,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/DismissValue.html">DismissValue</a>&nbsp;initialValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwipeableDefaults.html b/testData/compose/docs/reference/androidx/compose/material/SwipeableDefaults.html
index 88c7b7c..821ed81 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwipeableDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwipeableDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/SpringSpec.html">SpringSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final <a href="/reference/androidx/compose/material/ResistanceConfig.html">ResistanceConfig</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwipeableKt.html b/testData/compose/docs/reference/androidx/compose/material/SwipeableKt.html
index 97e09fb..83710c1 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwipeableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwipeableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SwipeableState.html">SwipeableState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -45,10 +45,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue</code></td>
               <td>
@@ -125,10 +125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwipeableState.Companion.html b/testData/compose/docs/reference/androidx/compose/material/SwipeableState.Companion.html
index 6a1cb92..f7e58ba 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwipeableState.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwipeableState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SwipeableState.html">SwipeableState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwipeableState.html b/testData/compose/docs/reference/androidx/compose/material/SwipeableState.html
index 02be9db..5e36337 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwipeableState.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwipeableState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/material/BackdropScaffoldState.html">BackdropScaffoldState</a></code></td>
                 <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/SwipeableState.Companion.html">SwipeableState.Companion</a></code></td>
             <td></td>
@@ -74,10 +74,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -134,10 +134,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/material/SwipeableState.html#SwipeableState(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Function1)">SwipeableState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&nbsp;animationSpec,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> newValue,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;confirmStateChange<br>)</code></div>
@@ -150,10 +150,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> void</code></td>
             <td>
@@ -234,10 +234,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;initialValue</code></td>
               <td>
@@ -269,10 +269,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;targetValue</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;delta</code></td>
               <td>
@@ -316,10 +316,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float</code></td>
               <td>
@@ -339,10 +339,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;velocity</code></td>
               <td>
@@ -356,10 +356,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>void</code></td>
               <td>
@@ -378,10 +378,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;targetValue</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwitchColors.html b/testData/compose/docs/reference/androidx/compose/material/SwitchColors.html
index 9457097..5989a07 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwitchColors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwitchColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -47,10 +47,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwitchDefaults.html b/testData/compose/docs/reference/androidx/compose/material/SwitchDefaults.html
index 25fc2a2..6fc93dd 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwitchDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwitchDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SwitchDefaults.html">SwitchDefaults</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/SwitchColors.html">SwitchColors</a></code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;checkedThumbColor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/SwitchKt.html b/testData/compose/docs/reference/androidx/compose/material/SwitchKt.html
index a5f52cc..9725465 100644
--- a/testData/compose/docs/reference/androidx/compose/material/SwitchKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/SwitchKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -50,10 +50,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;checked</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TabKt.html b/testData/compose/docs/reference/androidx/compose/material/TabKt.html
index a4877c8..b61ee92 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TabKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TabKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -56,10 +56,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
@@ -121,10 +121,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#Tab(kotlin.Boolean,kotlin.Function0,androidx.compose.ui.Modifier,kotlin.Boolean,kotlin.Function0,kotlin.Function0,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">Tab</a></code></td>
               <td></td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
@@ -211,10 +211,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#LeadingIconTab(kotlin.Boolean,kotlin.Function0,kotlin.Function0,kotlin.Function0,androidx.compose.ui.Modifier,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">LeadingIconTab</a></code></td>
               <td></td>
@@ -263,10 +263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;selected</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TabPosition.html b/testData/compose/docs/reference/androidx/compose/material/TabPosition.html
index cd8391b..6108448 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TabPosition.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TabPosition.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TabRowDefaults.html b/testData/compose/docs/reference/androidx/compose/material/TabRowDefaults.html
index 258227d..87aae86 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TabRowDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TabRowDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -135,10 +135,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -169,10 +169,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/Modifier.html">Modifier</a>&nbsp;modifier</code></td>
               <td>
@@ -203,10 +203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/TabPosition.html">TabPosition</a>&nbsp;currentTabPosition</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TabRowKt.html b/testData/compose/docs/reference/androidx/compose/material/TabRowKt.html
index 8ef0370..2e3db82 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TabRowKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TabRowKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -48,10 +48,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;selectedTabIndex</code></td>
               <td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;selectedTabIndex</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TextFieldColors.html b/testData/compose/docs/reference/androidx/compose/material/TextFieldColors.html
index e2dccb4..8fbc3a9 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TextFieldColors.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TextFieldColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -89,10 +89,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isError</code></td>
               <td>
@@ -133,10 +133,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -201,10 +201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -229,10 +229,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -251,10 +251,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -273,10 +273,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TextFieldDefaults.html b/testData/compose/docs/reference/androidx/compose/material/TextFieldDefaults.html
index 5e981fb..a70c7c2 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TextFieldDefaults.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TextFieldDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final float</code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/TextFieldDefaults.html">TextFieldDefaults</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/TextFieldColors.html">TextFieldColors</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TextFieldKt.html b/testData/compose/docs/reference/androidx/compose/material/TextFieldKt.html
index bede73f..32e72c1 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TextFieldKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TextFieldKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;value</code></td>
               <td>
@@ -357,10 +357,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/input/TextFieldValue.html">TextFieldValue</a>&nbsp;value</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/TextKt.html b/testData/compose/docs/reference/androidx/compose/material/TextKt.html
index f783f92..7d529fa 100644
--- a/testData/compose/docs/reference/androidx/compose/material/TextKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/TextKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -70,10 +70,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#ProvideTextStyle(androidx.compose.ui.text.TextStyle,kotlin.Function0)">ProvideTextStyle</a></code></td>
               <td></td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/package-summary.html#LocalTextStyle()">LocalTextStyle</a></code></td>
               <td></td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;text</code></td>
               <td>
@@ -245,10 +245,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/AnnotatedString.html">AnnotatedString</a>&nbsp;text</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ThresholdConfig.html b/testData/compose/docs/reference/androidx/compose/material/ThresholdConfig.html
index 74da8ff..108f82b 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ThresholdConfig.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ThresholdConfig.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/material/FixedThreshold.html">FixedThreshold</a></code></td>
                 <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract float</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/Typography.html b/testData/compose/docs/reference/androidx/compose/material/Typography.html
index 503b2bf..6a6e057 100644
--- a/testData/compose/docs/reference/androidx/compose/material/Typography.html
+++ b/testData/compose/docs/reference/androidx/compose/material/Typography.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a></code></td>
             <td>
@@ -121,10 +121,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/Typography.html#Typography(androidx.compose.ui.text.font.FontFamily,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle)">Typography</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/font/FontFamily.html">FontFamily</a>&nbsp;defaultFontFamily,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;h1,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;h2,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;h3,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;h4,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;h5,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;h6,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;subtitle1,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;subtitle2,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;body1,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;body2,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;button,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;caption,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/TextStyle.html">TextStyle</a>&nbsp;overline<br>)</code></div>
@@ -138,10 +138,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/Typography.html">Typography</a></code></td>
             <td>
@@ -245,10 +245,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/text/font/FontFamily.html">FontFamily</a>&nbsp;defaultFontFamily</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/icons/Icons.html b/testData/compose/docs/reference/androidx/compose/material/icons/Icons.html
index 48b53da..8901f81 100644
--- a/testData/compose/docs/reference/androidx/compose/material/icons/Icons.html
+++ b/testData/compose/docs/reference/androidx/compose/material/icons/Icons.html
@@ -28,10 +28,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/icons/Icons.Filled.html">Icons.Filled</a></code></td>
             <td>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/icons/Icons.Filled.html">Icons.Filled</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/icons/IconsKt.html b/testData/compose/docs/reference/androidx/compose/material/icons/IconsKt.html
index d53b90d..c3e6119 100644
--- a/testData/compose/docs/reference/androidx/compose/material/icons/IconsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/icons/IconsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/vector/ImageVector.html">ImageVector</a></code></td>
             <td>
@@ -45,10 +45,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;name</code></td>
               <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;fillAlpha</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/icons/package-summary.html b/testData/compose/docs/reference/androidx/compose/material/icons/package-summary.html
index e4c50e7..4f99880 100644
--- a/testData/compose/docs/reference/androidx/compose/material/icons/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/material/icons/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/icons/IconsKt.html">IconsKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/package-summary.html b/testData/compose/docs/reference/androidx/compose/material/package-summary.html
index 6f83c8b..d2c45c5 100644
--- a/testData/compose/docs/reference/androidx/compose/material/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/material/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a></code></td>
             <td></td>
@@ -20,7 +20,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ButtonColors.html">ButtonColors</a></code></td>
             <td>
@@ -93,7 +93,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/AndroidAlertDialogKt.html">AndroidAlertDialogKt</a></code></td>
             <td></td>
@@ -358,7 +358,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/BackdropValue.html">BackdropValue</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleAlpha.html b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleAlpha.html
index 6eee1b1..cf15ef0 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleAlpha.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleAlpha.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final float</code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/material/ripple/RippleAlpha.html#RippleAlpha(kotlin.Float,kotlin.Float,kotlin.Float,kotlin.Float)">RippleAlpha</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;draggedAlpha,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;focusedAlpha,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;hoveredAlpha,<br>&nbsp;&nbsp;&nbsp;&nbsp;float&nbsp;pressedAlpha<br>)</code></div>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleKt.html b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleKt.html
index 17f44a0..e2331eb 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/foundation/Indication.html">Indication</a></code></td>
             <td>
@@ -42,10 +42,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;bounded</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.Companion.html b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.Companion.html
index bcfc856..e242b63 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ripple/RippleAlpha.html">RippleAlpha</a></code></td>
             <td>
@@ -45,10 +45,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;contentColor</code></td>
               <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a>&nbsp;contentColor</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.html b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.html
index 6d993db..27304fd 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleTheme.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ripple/package-summary.html#rememberRipple(kotlin.Boolean,androidx.compose.ui.unit.Dp,androidx.compose.ui.graphics.Color)">rememberRipple</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ripple/RippleTheme.Companion.html">RippleTheme.Companion</a></code></td>
             <td></td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/ripple/RippleTheme.Companion.html#defaultRippleColor(androidx.compose.ui.graphics.Color,kotlin.Boolean)">defaultRippleColor</a></code></td>
               <td></td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ripple/RippleAlpha.html">RippleAlpha</a></code></td>
               <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/material/ripple/RippleTheme.Companion.html#defaultRippleAlpha(androidx.compose.ui.graphics.Color,kotlin.Boolean)">defaultRippleAlpha</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleThemeKt.html b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleThemeKt.html
index 5ee5307..19da95e 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ripple/RippleThemeKt.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ripple/RippleThemeKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/material/ripple/RippleTheme.html">RippleTheme</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/material/ripple/package-summary.html b/testData/compose/docs/reference/androidx/compose/material/ripple/package-summary.html
index 5f121fa..d48f915 100644
--- a/testData/compose/docs/reference/androidx/compose/material/ripple/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/material/ripple/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ripple/RippleTheme.html">RippleTheme</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/material/ripple/RippleAlpha.html">RippleAlpha</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/AbstractApplier.html b/testData/compose/docs/reference/androidx/compose/runtime/AbstractApplier.html
index 233514e..617bd9b 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/AbstractApplier.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/AbstractApplier.html
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Applier.html">Applier</a></code></td>
             <td></td>
@@ -117,10 +117,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -141,10 +141,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/AbstractApplier.html#AbstractApplier(kotlin.Any)">AbstractApplier</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;root)</code></div>
@@ -157,10 +157,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -189,10 +189,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -219,15 +219,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/Applier.html">androidx.compose.runtime.Applier</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ActualAndroidKt.html b/testData/compose/docs/reference/androidx/compose/runtime/ActualAndroidKt.html
index c59cc3e..7202cea 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ActualAndroidKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ActualAndroidKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Applier.html b/testData/compose/docs/reference/androidx/compose/runtime/Applier.html
index 95e01cf..1e15fbd 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Applier.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Applier.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/AbstractApplier.html">AbstractApplier</a></code></td>
                 <td>
@@ -108,10 +108,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/AbstractApplier.html">AbstractApplier</a></code></td>
             <td></td>
@@ -136,10 +136,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> N</code></td>
             <td>
@@ -154,10 +154,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/AtomicReference.html b/testData/compose/docs/reference/androidx/compose/runtime/AtomicReference.html
index 310047e..04b365a 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/AtomicReference.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/AtomicReference.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/AtomicReference.html#AtomicReference(kotlin.Any)">AtomicReference</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;value)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/BroadcastFrameClock.html b/testData/compose/docs/reference/androidx/compose/runtime/BroadcastFrameClock.html
index 0c48f0b..50973e5 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/BroadcastFrameClock.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/BroadcastFrameClock.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/BroadcastFrameClock.html#BroadcastFrameClock(kotlin.Function0)">BroadcastFrameClock</a>(Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onNewAwaiters)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -82,15 +82,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -106,7 +106,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
                       <td>
@@ -137,15 +137,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/MonotonicFrameClock.html">androidx.compose.runtime.MonotonicFrameClock</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/CheckResult.html b/testData/compose/docs/reference/androidx/compose/runtime/CheckResult.html
index 017d80d..6e57886 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/CheckResult.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/CheckResult.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/CheckResult.html#CheckResult(kotlin.String)">CheckResult</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;suggest)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Composable.html b/testData/compose/docs/reference/androidx/compose/runtime/Composable.html
index f0cfd1a..173f337 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Composable.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Composable.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/Composable.html#Composable()">Composable</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ComposablesKt.html b/testData/compose/docs/reference/androidx/compose/runtime/ComposablesKt.html
index ae574a0..8f1b1bf 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ComposablesKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ComposablesKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Composer.html">Composer</a></code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -253,10 +253,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -276,10 +276,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -379,10 +379,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -408,10 +408,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -511,10 +511,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -546,10 +546,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -653,10 +653,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -676,10 +676,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -779,10 +779,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -808,10 +808,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -911,10 +911,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -946,10 +946,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -978,10 +978,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;key</code></td>
               <td>
@@ -1050,10 +1050,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;keys</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ComposeCompilerApi.html b/testData/compose/docs/reference/androidx/compose/runtime/ComposeCompilerApi.html
index 1186339..5dd929e 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ComposeCompilerApi.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ComposeCompilerApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/ComposeCompilerApi.html#ComposeCompilerApi()">ComposeCompilerApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Composer.Companion.html b/testData/compose/docs/reference/androidx/compose/runtime/Composer.Companion.html
index e821f87..0609582 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Composer.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Composer.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Composer.html b/testData/compose/docs/reference/androidx/compose/runtime/Composer.html
index fe6714a..0073123 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Composer.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Composer.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Composer.Companion.html">Composer.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Applier.html">Applier</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/ComposeCompilerApi.html">ComposeCompilerApi</a> void</code></td>
             <td>
@@ -410,10 +410,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/compose/runtime/ComposeCompilerApi.html">ComposeCompilerApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -489,10 +489,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&nbsp;value</code></td>
               <td>
@@ -524,10 +524,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;value</code></td>
               <td>
@@ -541,10 +541,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -565,10 +565,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;value</code></td>
               <td>
@@ -582,10 +582,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -606,10 +606,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>char&nbsp;value</code></td>
               <td>
@@ -623,10 +623,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -647,10 +647,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>byte&nbsp;value</code></td>
               <td>
@@ -664,10 +664,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -688,10 +688,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>short&nbsp;value</code></td>
               <td>
@@ -705,10 +705,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -729,10 +729,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;value</code></td>
               <td>
@@ -746,10 +746,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -770,10 +770,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>float&nbsp;value</code></td>
               <td>
@@ -787,10 +787,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -811,10 +811,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;value</code></td>
               <td>
@@ -828,10 +828,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -852,10 +852,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>double&nbsp;value</code></td>
               <td>
@@ -869,10 +869,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -899,10 +899,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;key</code></td>
               <td>
@@ -922,10 +922,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;factory</code></td>
               <td>
@@ -957,10 +957,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Composer.html#startDefaults()">startDefaults</a></code></td>
               <td></td>
@@ -978,10 +978,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Composer.html#startMovableGroup(kotlin.Int,kotlin.Any)">startMovableGroup</a></code></td>
               <td></td>
@@ -1005,10 +1005,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Composer.html#startProviders(kotlin.Array)">startProviders</a></code></td>
               <td></td>
@@ -1026,10 +1026,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Composer.html#startRestartGroup(kotlin.Int)">startRestartGroup</a></code></td>
               <td></td>
@@ -1059,10 +1059,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;left</code></td>
               <td>
@@ -1082,10 +1082,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1105,10 +1105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;effect</code></td>
               <td>
@@ -1134,10 +1134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1151,10 +1151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#(androidx.compose.runtime.Composer).cache(kotlin.Boolean,kotlin.Function0)">cache</a></code></td>
               <td></td>
@@ -1197,10 +1197,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;key</code></td>
               <td>
@@ -1234,10 +1234,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;key</code></td>
               <td>
@@ -1263,10 +1263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ProvidedValue[]&nbsp;values</code></td>
               <td>
@@ -1286,10 +1286,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;key</code></td>
               <td>
@@ -1309,10 +1309,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;key</code></td>
               <td>
@@ -1326,10 +1326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Composer.html">Composer</a></code></td>
               <td>
@@ -1349,10 +1349,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;key</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ComposerKt.html b/testData/compose/docs/reference/androidx/compose/runtime/ComposerKt.html
index 9e6442f..d173c09 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ComposerKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ComposerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/ComposeCompilerApi.html">ComposeCompilerApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Composition.html b/testData/compose/docs/reference/androidx/compose/runtime/Composition.html
index 06a0113..d250025 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Composition.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Composition.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/ControlledComposition.html">ControlledComposition</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/RecomposeScope.html">RecomposeScope</a></code></td>
               <td></td>
@@ -127,10 +127,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;content</code></td>
               <td>
@@ -144,10 +144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a>&nbsp;kotlin.IllegalStateException</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/CompositionContext.html b/testData/compose/docs/reference/androidx/compose/runtime/CompositionContext.html
index abda04f..fb87405 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/CompositionContext.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/CompositionContext.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/Recomposer.html">Recomposer</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#rememberCompositionContext()">rememberCompositionContext</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/CompositionKt.html b/testData/compose/docs/reference/androidx/compose/runtime/CompositionKt.html
index 1fb380c..f1aace9 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/CompositionKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/CompositionKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Composition.html">Composition</a></code></td>
             <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Applier.html">Applier</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;&nbsp;applier</code></td>
               <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Applier.html">Applier</a></code></td>
               <td></td>
@@ -291,10 +291,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Applier.html">Applier</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;&nbsp;applier</code></td>
               <td>
@@ -314,10 +314,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Applier.html">Applier</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocal.html b/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocal.html
index 2f2ff93..19b7d1f 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocal.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocal.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a></code></td>
                 <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -80,10 +80,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/CompositionLocal.html#CompositionLocal(kotlin.Function0)">CompositionLocal</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;defaultFactory)</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocalKt.html b/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocalKt.html
index e69ca6c..5a640de 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocalKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/CompositionLocalKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/SnapshotMutationPolicy.html">SnapshotMutationPolicy</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;policy</code></td>
               <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;defaultFactory</code></td>
               <td>
@@ -160,10 +160,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ControlledComposition.html b/testData/compose/docs/reference/androidx/compose/runtime/ControlledComposition.html
index 8b1095a..d2f2a27 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ControlledComposition.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ControlledComposition.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/ControlledComposition.html">ControlledComposition</a></code></td>
             <td></td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -139,15 +139,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/Composition.html">androidx.compose.runtime.Composition</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -174,15 +174,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/Composition.html">androidx.compose.runtime.Composition</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract boolean</code></td>
                       <td>
@@ -230,10 +230,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;content</code></td>
               <td>
@@ -267,10 +267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -289,10 +289,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Set.html">Set</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;&nbsp;values</code></td>
               <td>
@@ -311,10 +311,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;value</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/DisallowComposableCalls.html b/testData/compose/docs/reference/androidx/compose/runtime/DisallowComposableCalls.html
index c05911e..d6ac826 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/DisallowComposableCalls.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/DisallowComposableCalls.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/DisallowComposableCalls.html#DisallowComposableCalls()">DisallowComposableCalls</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectResult.html b/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectResult.html
index d88d859..44d53e7 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectResult.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectResult.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectScope.html b/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectScope.html
index cc75e5b..7d5f8c1 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectScope.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/DisposableEffectScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/DisposableEffectScope.html#DisposableEffectScope()">DisposableEffectScope</a>()</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/DisposableEffectResult.html">DisposableEffectResult</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/EffectsKt.html b/testData/compose/docs/reference/androidx/compose/runtime/EffectsKt.html
index f254052..18327ad 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/EffectsKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/EffectsKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/compose/runtime/NonRestartableComposable.html">NonRestartableComposable</a> void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ExpectKt.html b/testData/compose/docs/reference/androidx/compose/runtime/ExpectKt.html
index 2b2381c..f65a057 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ExpectKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ExpectKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ExperimentalComposeApi.html b/testData/compose/docs/reference/androidx/compose/runtime/ExperimentalComposeApi.html
index 7f2794a..e3829ff 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ExperimentalComposeApi.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ExperimentalComposeApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/ExperimentalComposeApi.html#ExperimentalComposeApi()">ExperimentalComposeApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ExplicitGroupsComposable.html b/testData/compose/docs/reference/androidx/compose/runtime/ExplicitGroupsComposable.html
index d3dc508..7b2f3dc 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ExplicitGroupsComposable.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ExplicitGroupsComposable.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/ExplicitGroupsComposable.html#ExplicitGroupsComposable()">ExplicitGroupsComposable</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Immutable.html b/testData/compose/docs/reference/androidx/compose/runtime/Immutable.html
index 7f1e6f3..f5310b4 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Immutable.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Immutable.html
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/StableMarker.html">StableMarker</a></code></td>
             <td></td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/Immutable.html#Immutable()">Immutable</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/InternalComposeApi.html b/testData/compose/docs/reference/androidx/compose/runtime/InternalComposeApi.html
index 5df54bd..f1525ba 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/InternalComposeApi.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/InternalComposeApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/InternalComposeApi.html#InternalComposeApi()">InternalComposeApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClock.html b/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClock.html
index 42b8a06..a4f3e5b 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClock.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClock.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/BroadcastFrameClock.html">BroadcastFrameClock</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/MonotonicFrameClock.Key.html">MonotonicFrameClock.Key</a></code></td>
             <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
             <td>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
@@ -108,15 +108,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -132,7 +132,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>default @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClockKt.html b/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClockKt.html
index d0bbd41..e7102e0 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClockKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/MonotonicFrameClockKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/MutableState.html b/testData/compose/docs/reference/androidx/compose/runtime/MutableState.html
index 9e31685..44b5cbb 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/MutableState.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/MutableState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/ProduceStateScope.html">ProduceStateScope</a></code></td>
                 <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/State.html">State</a></code></td>
             <td></td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -99,10 +99,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/NoLiveLiterals.html b/testData/compose/docs/reference/androidx/compose/runtime/NoLiveLiterals.html
index de00f46..fee8836 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/NoLiveLiterals.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/NoLiveLiterals.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/NoLiveLiterals.html#NoLiveLiterals()">NoLiveLiterals</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/NonRestartableComposable.html b/testData/compose/docs/reference/androidx/compose/runtime/NonRestartableComposable.html
index 7b810f4..4ad858b 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/NonRestartableComposable.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/NonRestartableComposable.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/NonRestartableComposable.html#NonRestartableComposable()">NonRestartableComposable</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/PausableMonotonicFrameClock.html b/testData/compose/docs/reference/androidx/compose/runtime/PausableMonotonicFrameClock.html
index aba1e4d..0319c33 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/PausableMonotonicFrameClock.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/PausableMonotonicFrameClock.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/PausableMonotonicFrameClock.html#PausableMonotonicFrameClock(androidx.compose.runtime.MonotonicFrameClock)">PausableMonotonicFrameClock</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a>&nbsp;frameClock)</code></div>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -84,15 +84,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -108,7 +108,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
                       <td>
@@ -139,15 +139,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/MonotonicFrameClock.html">androidx.compose.runtime.MonotonicFrameClock</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ProduceStateScope.html b/testData/compose/docs/reference/androidx/compose/runtime/ProduceStateScope.html
index e9c5f7b..ae982a2 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ProduceStateScope.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ProduceStateScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Void.html">Void</a></code></td>
             <td>
@@ -34,15 +34,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
                       <td>
@@ -67,15 +67,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">kotlinx.coroutines.CoroutineScope</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -91,7 +91,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ProvidableCompositionLocal.html b/testData/compose/docs/reference/androidx/compose/runtime/ProvidableCompositionLocal.html
index 7feaecf..73b7575 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ProvidableCompositionLocal.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ProvidableCompositionLocal.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#compositionLocalOf(androidx.compose.runtime.SnapshotMutationPolicy,kotlin.Function0)">compositionLocalOf</a></code></td>
             <td></td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;infix @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidedValue.html">ProvidedValue</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -86,15 +86,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/CompositionLocal.html">androidx.compose.runtime.CompositionLocal</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
                       <td>
@@ -119,10 +119,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ProvidedValue.html b/testData/compose/docs/reference/androidx/compose/runtime/ProvidedValue.html
index aefb2e4..1b76494 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ProvidedValue.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ProvidedValue.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ReadOnlyComposable.html b/testData/compose/docs/reference/androidx/compose/runtime/ReadOnlyComposable.html
index d4a97ab..4589543 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ReadOnlyComposable.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ReadOnlyComposable.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/ReadOnlyComposable.html#ReadOnlyComposable()">ReadOnlyComposable</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/RecomposeScope.html b/testData/compose/docs/reference/androidx/compose/runtime/RecomposeScope.html
index cda03ae..6e690b2 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/RecomposeScope.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/RecomposeScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.Companion.html b/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.Companion.html
index f6bd111..a5c5c2e 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.Companion.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-state-flow/index.html">StateFlow</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Set.html">Set</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/RecomposerInfo.html">RecomposerInfo</a>&gt;&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.State.html b/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.State.html
index 338efab..9ecb61c 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.State.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.State.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Recomposer.State.html#Idle">Idle</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.html b/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.html
index f089420..fe212b2 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Recomposer.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a><a href="/reference/androidx/compose/runtime/Recomposer.Companion.html">Recomposer.Companion</a></code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final long</code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/Recomposer.html#Recomposer(kotlin.coroutines.CoroutineContext)">Recomposer</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a>&nbsp;effectCoroutineContext)</code></div>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/RecomposerInfo.html">RecomposerInfo</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/RecomposerInfo.html b/testData/compose/docs/reference/androidx/compose/runtime/RecomposerInfo.html
index 98331d7..603a91b 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/RecomposerInfo.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/RecomposerInfo.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract long</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/RecomposerKt.html b/testData/compose/docs/reference/androidx/compose/runtime/RecomposerKt.html
index fd20812..6df5d4f 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/RecomposerKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/RecomposerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/RememberObserver.html b/testData/compose/docs/reference/androidx/compose/runtime/RememberObserver.html
index a38dc5c..a176ff2 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/RememberObserver.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/RememberObserver.html
@@ -28,10 +28,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/ScopeUpdateScope.html b/testData/compose/docs/reference/androidx/compose/runtime/ScopeUpdateScope.html
index 212eff3..c151df0 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/ScopeUpdateScope.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/ScopeUpdateScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/SkippableUpdater.html b/testData/compose/docs/reference/androidx/compose/runtime/SkippableUpdater.html
index f9da820..e7330aa 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/SkippableUpdater.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/SkippableUpdater.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/SkippableUpdater.html#SkippableUpdater(androidx.compose.runtime.Composer)">SkippableUpdater</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Composer.html">Composer</a>&nbsp;composer)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/SnapshotMutationPolicy.html b/testData/compose/docs/reference/androidx/compose/runtime/SnapshotMutationPolicy.html
index fd7d34d..3e2a217 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/SnapshotMutationPolicy.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/SnapshotMutationPolicy.html
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/SnapshotStateKt.html b/testData/compose/docs/reference/androidx/compose/runtime/SnapshotStateKt.html
index b418ed7..829794a 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/SnapshotStateKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/SnapshotStateKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -191,10 +191,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a>&nbsp;context</code></td>
               <td>
@@ -219,10 +219,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a>&nbsp;context</code></td>
               <td>
@@ -259,10 +259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;calculation</code></td>
               <td>
@@ -334,10 +334,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -366,10 +366,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -445,10 +445,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -477,10 +477,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -578,10 +578,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;value</code></td>
               <td>
@@ -601,10 +601,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/State.html">State</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Stable.html b/testData/compose/docs/reference/androidx/compose/runtime/Stable.html
index 2efa077..07e9cff 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Stable.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Stable.html
@@ -29,10 +29,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Immutable.html">Immutable</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/Stable.html#Stable()">Stable</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/StableMarker.html b/testData/compose/docs/reference/androidx/compose/runtime/StableMarker.html
index 5b6dfbb..b8b9ceb 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/StableMarker.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/StableMarker.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Immutable.html">Immutable</a></code></td>
             <td></td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/StableMarker.html#StableMarker()">StableMarker</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/State.html b/testData/compose/docs/reference/androidx/compose/runtime/State.html
index d713417..3dcff62 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/State.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/State.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/animation/core/AnimationState.html">AnimationState</a></code></td>
                 <td>
@@ -39,7 +39,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/ProduceStateScope.html">ProduceStateScope</a></code></td>
                 <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/MutableState.html">MutableState</a></code></td>
             <td></td>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/TestOnly.html b/testData/compose/docs/reference/androidx/compose/runtime/TestOnly.html
index 0393138..d5e5216 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/TestOnly.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/TestOnly.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/TestOnly.html#TestOnly()">TestOnly</a>()</code></div>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/Updater.html b/testData/compose/docs/reference/androidx/compose/runtime/Updater.html
index 75ee3fa..60b2353 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/Updater.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/Updater.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#ComposeNode(kotlin.Function0,kotlin.Function1)">ComposeNode</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/Updater.html#Updater(androidx.compose.runtime.Composer)">Updater</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/Composer.html">Composer</a>&nbsp;composer)</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -112,10 +112,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html#reconcile(kotlin.Function1)">reconcile</a></code></td>
               <td></td>
@@ -140,10 +140,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html#update(kotlin.Int,kotlin.Function2)">update</a></code></td>
               <td></td>
@@ -161,10 +161,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html#update(kotlin.Int,kotlin.Function2)">update</a></code></td>
               <td></td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html#set(kotlin.Int,kotlin.Function2)">set</a></code></td>
               <td></td>
@@ -203,10 +203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/Updater.html#set(kotlin.Int,kotlin.Function2)">set</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVector.html b/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVector.html
index d8085fb..2797dba 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVector.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVector.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.ranges/-int-range/index.html">IntRange</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVectorKt.html b/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVectorKt.html
index c1f88b5..c5a3214 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVectorKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/collection/MutableVectorKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/collection/MutableVector.html">MutableVector</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/collection/MutableVector.html#ensureCapacity(kotlin.Int)">ensureCapacity</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/collection/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/collection/package-summary.html
index 0c9aec1..679abbf 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/collection/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/collection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/collection/MutableVector.html">MutableVector</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/livedata/LiveDataAdapterKt.html b/testData/compose/docs/reference/androidx/compose/runtime/livedata/LiveDataAdapterKt.html
index 4a1f583..3dd19d0 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/livedata/LiveDataAdapterKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/livedata/LiveDataAdapterKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;T&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/livedata/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/livedata/package-summary.html
index b9e0b9e..1068131 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/livedata/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/livedata/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/livedata/LiveDataAdapterKt.html">LiveDataAdapterKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/package-summary.html
index 1a6c7b7..2a20d6d 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/CheckResult.html">CheckResult</a></code></td>
             <td></td>
@@ -90,7 +90,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Applier.html">Applier</a></code></td>
             <td>
@@ -179,7 +179,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/AbstractApplier.html">AbstractApplier</a></code></td>
             <td>
@@ -294,7 +294,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/Recomposer.State.html">Recomposer.State</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/RxJava2AdapterKt.html b/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/RxJava2AdapterKt.html
index 322b5b4..d3fdfb5 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/RxJava2AdapterKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/RxJava2AdapterKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;</code></td>
             <td>
@@ -74,10 +74,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/package-summary.html
index cf2ad32..d9a985e 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/rxjava2/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/rxjava2/RxJava2AdapterKt.html">RxJava2AdapterKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/RxJava3AdapterKt.html b/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/RxJava3AdapterKt.html
index ed05866..313d516 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/RxJava3AdapterKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/RxJava3AdapterKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/State.html">State</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;</code></td>
             <td>
@@ -74,10 +74,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&nbsp;initial</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/package-summary.html
index 412c2c6..9fd77fb 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/rxjava3/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/rxjava3/RxJava3AdapterKt.html">RxJava3AdapterKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/ListSaverKt.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/ListSaverKt.html
index 034195b..230f9e3 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/ListSaverKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/ListSaverKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Original,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/MapSaverKt.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/MapSaverKt.html
index 635fc0c..25cc7e4 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/MapSaverKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/MapSaverKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/RememberSaveableKt.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/RememberSaveableKt.html
index 2acdadd..3b8b8fd 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/RememberSaveableKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/RememberSaveableKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -67,10 +67,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;inputs</code></td>
               <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;inputs</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html
index bca1954..5d4f61a 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> void</code></td>
             <td>
@@ -93,10 +93,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;key</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolderKt.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolderKt.html
index e248f33..128f3b1 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolderKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateHolderKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/compose/runtime/Composable.html">Composable</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html">SaveableStateHolder</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html
index 13fad32..15aaf32 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.html
index ebb613d..a39a99d 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html">SaveableStateRegistry.Entry</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -77,10 +77,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;value</code></td>
               <td>
@@ -99,10 +99,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;key</code></td>
               <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;key</code></td>
               <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html">SaveableStateRegistry.Entry</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistryKt.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistryKt.html
index ed91cdb..20af0f7 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistryKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaveableStateRegistryKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.html">SaveableStateRegistry</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/SaveableStateRegistry.html">SaveableStateRegistry</a></code></td>
             <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/util/Map.html">Map</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;&gt;&nbsp;restoredValues</code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/Saver.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/Saver.html
index fec9922..ed1cac9 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/Saver.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/Saver.html
@@ -29,10 +29,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract Original</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverKt.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverKt.html
index 281a1d9..44e7027 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Original,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Saveable&gt;</code></td>
             <td>
@@ -58,10 +58,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/saveable/SaverScope.html">SaverScope</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> value,&nbsp;Saveable&gt;&nbsp;save</code></td>
               <td>
@@ -87,10 +87,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverScope.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverScope.html
index 6f59ed2..6267f07 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverScope.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/SaverScope.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/Saver.html">Saver</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/saveable/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/saveable/package-summary.html
index f2d52cd..de324ce 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/saveable/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/saveable/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/SaveableStateHolder.html">SaveableStateHolder</a></code></td>
             <td>
@@ -46,7 +46,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/saveable/ListSaverKt.html">ListSaverKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/MutableSnapshot.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/MutableSnapshot.html
index 9b54158..3294d24 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/MutableSnapshot.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/MutableSnapshot.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeMutableSnapshot(kotlin.Function1,kotlin.Function1)">takeMutableSnapshot</a></code></td>
             <td></td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.html">SnapshotApplyResult</a></code></td>
             <td>
@@ -135,15 +135,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">androidx.compose.runtime.snapshots.Snapshot</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
                       <td>
@@ -163,15 +163,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">androidx.compose.runtime.snapshots.Snapshot</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/ObserverHandle.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/ObserverHandle.html
index f06cb96..b28b8f1 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/ObserverHandle.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/ObserverHandle.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html
index d12d3d2..6721ad8 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -124,10 +124,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
               <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;readObserver</code></td>
               <td>
@@ -186,10 +186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
               <td>
@@ -211,10 +211,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;readObserver</code></td>
               <td>
@@ -274,10 +274,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeSnapshot(kotlin.Function1)">takeSnapshot</a></code></td>
               <td></td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;readObserver</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.html
index 07b8e45..5fd3856 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/Snapshot.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/MutableSnapshot.html">MutableSnapshot</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeSnapshot(kotlin.Function1)">takeSnapshot</a></code></td>
             <td></td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/Snapshot.Companion.html">Snapshot.Companion</a></code></td>
             <td></td>
@@ -82,10 +82,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -114,10 +114,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html#Snapshot(kotlin.Int,androidx.compose.runtime.snapshots.SnapshotIdSet)">Snapshot</a>(int&nbsp;id,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/SnapshotIdSet.html">SnapshotIdSet</a>&nbsp;invalid)</code></div>
@@ -130,10 +130,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -202,10 +202,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html
index d7c2bf4..60bd5bd 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html#SnapshotApplyConflictException(androidx.compose.runtime.snapshots.Snapshot)">SnapshotApplyConflictException</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a>&nbsp;snapshot)</code></div>
@@ -73,15 +73,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
@@ -154,15 +154,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html
index 4d6b692..2913d5c 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html#Failure(androidx.compose.runtime.snapshots.Snapshot)">Failure</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a>&nbsp;snapshot)</code></div>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html
index 69ec006..4fd660b 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static boolean</code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.html
index 6b2d5ac..27ce65c 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html">SnapshotApplyResult.Failure</a></code></td>
                 <td></td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html">SnapshotApplyResult.Failure</a></code></td>
             <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract boolean</code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyResult.html#SnapshotApplyResult()">SnapshotApplyResult</a>()</code></div>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotKt.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotKt.html
index a666d97..e70a469 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
             <td>
@@ -76,10 +76,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/package-summary.html#readable(androidx.compose.runtime.snapshots.StateRecord,kotlin.Int,androidx.compose.runtime.snapshots.SnapshotIdSet)">readable</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotMutableState.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotMutableState.html
index 3ff9ab3..d442614 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotMutableState.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotMutableState.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/State.html">State</a></code></td>
             <td></td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/SnapshotMutationPolicy.html">SnapshotMutationPolicy</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -57,15 +57,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
                       <td>
@@ -90,15 +90,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateList.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateList.html
index 69196a0..33e1988 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateList.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateList.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateListOf()">mutableStateListOf</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/snapshots/SnapshotStateList.html#SnapshotStateList()">SnapshotStateList</a>()</code></div>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -216,15 +216,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">kotlin.collections.Collection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/stream/Stream.html">Stream</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
                       <td>
@@ -253,7 +253,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">kotlin.collections.Iterable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -269,7 +269,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">kotlin.collections.List</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Spliterator.html">Spliterator</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
                       <td>
@@ -285,7 +285,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html">kotlin.collections.MutableCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -301,7 +301,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">kotlin.collections.MutableList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -323,7 +323,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/snapshots/StateObject.html">androidx.compose.runtime.snapshots.StateObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateMap.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateMap.html
index b1f2c38..6b7084a 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateMap.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateMap.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/package-summary.html#mutableStateMapOf()">mutableStateMapOf</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Set.html">Set</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/Map.Entry.html">Map.Entry</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> K,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&gt;</code></td>
             <td>
@@ -74,10 +74,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;K&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;V&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/compose/runtime/snapshots/SnapshotStateMap.html#SnapshotStateMap()">SnapshotStateMap</a>()</code></div>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -156,15 +156,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">kotlin.collections.Map</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -186,7 +186,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-map/index.html">kotlin.collections.MutableMap</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>V</code></td>
                       <td>
@@ -250,7 +250,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/snapshots/StateObject.html">androidx.compose.runtime.snapshots.StateObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateObserver.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateObserver.html
index d8ae30d..bbc8220 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateObserver.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/SnapshotStateObserver.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotStateObserver.html#SnapshotStateObserver(kotlin.Function1)">SnapshotStateObserver</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onChangedExecutor<br>)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateObject.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateObject.html
index d52829a..fb3e608 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateObject.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateObject.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotStateList.html">SnapshotStateList</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default <a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a>&nbsp;previous</code></td>
               <td>
@@ -124,10 +124,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateRecord.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateRecord.html
index 1dcd090..5809285 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateRecord.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/StateRecord.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/compose/runtime/snapshots/StateRecord.html#StateRecord()">StateRecord</a>()</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/package-summary.html
index fc25357..d2fc28c 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/snapshots/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/snapshots/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
             <td>
@@ -34,7 +34,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/MutableSnapshot.html">MutableSnapshot</a></code></td>
             <td>
@@ -89,7 +89,7 @@
     <h2>Exceptions</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html">SnapshotApplyConflictException</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionData.html b/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionData.html
index e9b0f8b..0f27696 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionData.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionData.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/compose/runtime/tooling/CompositionGroup.html">CompositionGroup</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Iterable.html">Iterable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/tooling/CompositionGroup.html">CompositionGroup</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionGroup.html b/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionGroup.html
index 97bae7e..aceb91c 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionGroup.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/tooling/CompositionGroup.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Iterable.html">Iterable</a>&lt;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -56,15 +56,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/compose/runtime/tooling/CompositionData.html">androidx.compose.runtime.tooling.CompositionData</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Iterable.html">Iterable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/tooling/CompositionGroup.html">CompositionGroup</a>&gt;</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/tooling/InspectionTablesKt.html b/testData/compose/docs/reference/androidx/compose/runtime/tooling/InspectionTablesKt.html
index 74ab174..a0df020 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/tooling/InspectionTablesKt.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/tooling/InspectionTablesKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="https://developer.android.com/reference/java/util/Set.html">Set</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/compose/runtime/tooling/CompositionData.html">CompositionData</a>&gt;&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/androidx/compose/runtime/tooling/package-summary.html b/testData/compose/docs/reference/androidx/compose/runtime/tooling/package-summary.html
index 8f8f9ec..fd9ff79 100644
--- a/testData/compose/docs/reference/androidx/compose/runtime/tooling/package-summary.html
+++ b/testData/compose/docs/reference/androidx/compose/runtime/tooling/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/tooling/CompositionData.html">CompositionData</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/runtime/tooling/InspectionTablesKt.html">InspectionTablesKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/androidx/packages.html b/testData/compose/docs/reference/androidx/packages.html
index b976470..85d181f 100644
--- a/testData/compose/docs/reference/androidx/packages.html
+++ b/testData/compose/docs/reference/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/compose/animation/package-summary.html">androidx.compose.animation</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/classes.html b/testData/compose/docs/reference/kotlin/androidx/classes.html
index 1ae9881..f0fcc8b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/classes.html
+++ b/testData/compose/docs/reference/kotlin/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_A">A</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -262,7 +262,7 @@
     <h2 id="letter_B">B</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BackdropScaffoldDefaults.html">BackdropScaffoldDefaults</a></code></td>
             <td>
@@ -427,7 +427,7 @@
     <h2 id="letter_C">C</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/CanvasKt.html">CanvasKt</a></code></td>
             <td></td>
@@ -622,7 +622,7 @@
     <h2 id="letter_D">D</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/DarkThemeKt.html">DarkThemeKt</a></code></td>
             <td></td>
@@ -775,7 +775,7 @@
     <h2 id="letter_E">E</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a></code></td>
             <td>
@@ -870,7 +870,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/FabPosition.html">FabPosition</a></code></td>
             <td>
@@ -987,7 +987,7 @@
     <h2 id="letter_G">G</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/GenericShape.html">GenericShape</a></code></td>
             <td>
@@ -1024,7 +1024,7 @@
     <h2 id="letter_I">I</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/IconButtonKt.html">IconButtonKt</a></code></td>
             <td></td>
@@ -1191,7 +1191,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a></code></td>
             <td>
@@ -1246,7 +1246,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/LayoutScopeMarker.html">LayoutScopeMarker</a></code></td>
             <td></td>
@@ -1327,7 +1327,7 @@
     <h2 id="letter_M">M</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/MapSaverKt.html">MapSaverKt</a></code></td>
             <td></td>
@@ -1440,7 +1440,7 @@
     <h2 id="letter_N">N</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/NoLiveLiterals.html">NoLiveLiterals</a></code></td>
             <td>
@@ -1459,7 +1459,7 @@
     <h2 id="letter_O">O</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
             <td>
@@ -1486,7 +1486,7 @@
     <h2 id="letter_P">P</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingKt.html">PaddingKt</a></code></td>
             <td></td>
@@ -1581,7 +1581,7 @@
     <h2 id="letter_R">R</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/RadioButtonColors.html">RadioButtonColors</a></code></td>
             <td>
@@ -1724,7 +1724,7 @@
     <h2 id="letter_S">S</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder.html">SaveableStateHolder</a></code></td>
             <td>
@@ -2113,7 +2113,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/TabKt.html">TabKt</a></code></td>
             <td></td>
@@ -2256,7 +2256,7 @@
     <h2 id="letter_U">U</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
             <td>
@@ -2269,7 +2269,7 @@
     <h2 id="letter_V">V</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorConvertersKt.html">VectorConvertersKt</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html
index f9e74d0..0d93524 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html">AnimatedContentScope.SlideDirection</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html
index d6f3597..8c13602 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html">AnimatedContentScope.SlideDirection</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.html
index ec49862..1aebd11 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedContentScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/AnimatedContentScope.SlideDirection.html">AnimatedContentScope.SlideDirection</a></code></td>
             <td>
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
             <td>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open S</code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/Transition.Segment.html">androidx.compose.animation.core.Transition.Segment</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;infix <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -166,10 +166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/package-summary.html#AnimatedContent(kotlin.Any,androidx.compose.ui.Modifier,kotlin.Function1,androidx.compose.ui.Alignment,kotlin.Function2)">AnimatedContent</a></code></td>
               <td></td>
@@ -233,10 +233,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/package-summary.html#AnimatedContent(kotlin.Any,androidx.compose.ui.Modifier,kotlin.Function1,androidx.compose.ui.Alignment,kotlin.Function2)">AnimatedContent</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedVisibilityScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedVisibilityScope.html
index 53206de..f6ebef4 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedVisibilityScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/AnimatedVisibilityScope.html
@@ -121,10 +121,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -139,10 +139,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Transition.html">Transition</a>&lt;<a href="/reference/kotlin/androidx/compose/animation/EnterExitState.html">EnterExitState</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ContentTransform.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ContentTransform.html
index 34ba7b3..94e9a2e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ContentTransform.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ContentTransform.html
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/SizeTransform.html">SizeTransform</a></code></td>
             <td></td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/ContentTransform.html#ContentTransform(androidx.compose.animation.EnterTransition,androidx.compose.animation.ExitTransition,kotlin.Float,androidx.compose.animation.SizeTransform)">ContentTransform</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;targetContentEnter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialContentExit:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/ExitTransition.html">ExitTransition</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;targetContentZIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;sizeTransform:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/SizeTransform.html">SizeTransform</a>?<br>)</code></div>
@@ -101,10 +101,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ExitTransition.html">ExitTransition</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterExitState.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterExitState.html
index 848268c..29ed2ab 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterExitState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterExitState.html
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/package-summary.html#AnimatedVisibility(kotlin.Boolean,androidx.compose.ui.Modifier,androidx.compose.animation.EnterTransition,androidx.compose.animation.ExitTransition,kotlin.Function1)">AnimatedVisibility</a></code></td>
             <td></td>
@@ -110,10 +110,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterExitState.html#PostExit">PostExit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.Companion.html
index d96314d..2cb928b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
             <td>
@@ -38,10 +38,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ExitTransition.Companion.html#None()">None</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.html
index 721dd07..1891e58 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/EnterTransition.html
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/package-summary.html#fadeIn(kotlin.Float,androidx.compose.animation.core.FiniteAnimationSpec)">fadeIn</a></code></td>
             <td></td>
@@ -106,10 +106,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
             <td>
@@ -124,10 +124,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html#EnterTransition()">EnterTransition</a>()</code></div>
@@ -140,10 +140,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -170,10 +170,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>infix @<a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> <a href="/reference/kotlin/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
             <td>
@@ -193,10 +193,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ExitTransition.Companion.html#None()">None</a></code></td>
               <td></td>
@@ -256,10 +256,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.Companion.html
index 3bd4530..f89d627 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ExitTransition.html">ExitTransition</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.html
index 83e1f55..e11bca6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExitTransition.html
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/package-summary.html#fadeOut(kotlin.Float,androidx.compose.animation.core.FiniteAnimationSpec)">fadeOut</a></code></td>
             <td></td>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ExitTransition.html">ExitTransition</a></code></td>
             <td>
@@ -125,10 +125,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/ExitTransition.html#ExitTransition()">ExitTransition</a>()</code></div>
@@ -141,10 +141,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -329,10 +329,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>exit:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/ExitTransition.html">ExitTransition</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html
index f8d0bfe..52fe410 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html#ExperimentalAnimationApi()">ExperimentalAnimationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/SizeTransform.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/SizeTransform.html
index e191090..e6156ef 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/SizeTransform.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/SizeTransform.html
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html">FiniteAnimationSpec</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html
index 859739b..4323bc0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/SplineBasedFloatDecayAnimationSpec.html#SplineBasedFloatDecayAnimationSpec(androidx.compose.ui.unit.Density)">SplineBasedFloatDecayAnimationSpec</a>(density:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Density.html">Density</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -93,10 +93,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>density:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Density.html">Density</a></code></td>
               <td>
@@ -116,10 +116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -144,10 +144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -172,10 +172,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -206,10 +206,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animatable.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animatable.html
index 8b23be2..1de61db 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animatable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animatable.html
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Any,kotlin.Function1)">animateTo</a></code></td>
             <td></td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#Animatable(kotlin.Any,androidx.compose.animation.core.TwoWayConverter,kotlin.Any)">Animatable</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;T,<br>&nbsp;&nbsp;&nbsp;&nbsp;typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;visibilityThreshold:&nbsp;T?<br>)</code></div>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="/reference/kotlin/androidx/compose/animation/core/AnimationResult.html">AnimationResult</a>&lt;T,&nbsp;V&gt;</code></td>
             <td>
@@ -158,10 +158,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -229,10 +229,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;T</code></td>
               <td>
@@ -397,10 +397,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;T</code></td>
               <td>
@@ -414,10 +414,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Any,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -444,10 +444,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Any,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -473,10 +473,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>lowerBound:&nbsp;T? = this.lowerBound</code></td>
               <td>
@@ -496,10 +496,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalStateException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animation.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animation.html
index f63c23a..0e928ee 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animation.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Animation.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html">DecayAnimation</a></code></td>
                 <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html">Animatable</a></code></td>
             <td></td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -93,10 +93,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -132,10 +132,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -155,10 +155,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -199,10 +199,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -243,10 +243,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationConstants.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationConstants.html
index 38f53f1..831780b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationConstants.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationConstants.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html
index 662ca05..f21b0d5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html#BoundReached">BoundReached</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationResult.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationResult.html
index de4f376..5daed28 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationResult.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationResult.html
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/AnimationResult.html#AnimationResult(androidx.compose.animation.core.AnimationState,androidx.compose.animation.core.AnimationEndReason)">AnimationResult</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;endState:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;T,&nbsp;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;endReason:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html">AnimationEndReason</a><br>)</code></div>
@@ -77,10 +77,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html">AnimationEndReason</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationScope.html
index 47d36f6..8f37f6a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationScope.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.AnimationState).animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Boolean,kotlin.Function1)">animateTo</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html
index 3881e6a..aeb2276 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html">FiniteAnimationSpec</a></code></td>
                 <td>
@@ -45,7 +45,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">VectorizedAnimationSpec</a>&lt;V&gt;</code></td>
             <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationState.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationState.html
index 78143e8..75ca05f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html#AnimationState(androidx.compose.animation.core.TwoWayConverter,kotlin.Any,androidx.compose.animation.core.AnimationVector,kotlin.Long,kotlin.Long,kotlin.Boolean)">AnimationState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;T,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialVelocityVector:&nbsp;V?,<br>&nbsp;&nbsp;&nbsp;&nbsp;lastFrameTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;finishedTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;isRunning:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -92,10 +92,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;T,&nbsp;V&gt;</code></td>
             <td>
@@ -135,10 +135,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -226,10 +226,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;T = this.value</code></td>
               <td>
@@ -267,10 +267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -289,10 +289,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = this.value</code></td>
               <td>
@@ -330,10 +330,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector.html
index 28857c2..9a90a94 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html#AnimationVector()">AnimationVector</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html
index 1b80100..ff811aa 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html#AnimationVector1D(kotlin.Float)">AnimationVector1D</a>(initVal:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -101,10 +101,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initVal:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector2D.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector2D.html
index a69511a..d23015a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector2D.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector2D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector2D.html#AnimationVector2D(kotlin.Float,kotlin.Float)">AnimationVector2D</a>(v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;v2:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -108,10 +108,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector3D.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector3D.html
index 536677f..f3f274e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector3D.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector3D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector3D.html#AnimationVector3D(kotlin.Float,kotlin.Float,kotlin.Float)">AnimationVector3D</a>(v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;v2:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;v3:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -115,10 +115,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html
index 6cfcbb3..71f501a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html#AnimationVector4D(kotlin.Float,kotlin.Float,kotlin.Float,kotlin.Float)">AnimationVector4D</a>(v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;v2:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;v3:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;v4:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AtomicReference.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AtomicReference.html
index 1522f08..ecbb2ad 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AtomicReference.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/AtomicReference.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/AtomicReference.html#AtomicReference(kotlin.Any)">AtomicReference</a>(value:&nbsp;V)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/CubicBezierEasing.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/CubicBezierEasing.html
index 1f21cc6..cfce7f4 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/CubicBezierEasing.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/CubicBezierEasing.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#FastOutSlowInEasing()">FastOutSlowInEasing</a></code></td>
             <td></td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/CubicBezierEasing.html#CubicBezierEasing(kotlin.Float,kotlin.Float,kotlin.Float,kotlin.Float)">CubicBezierEasing</a>(a:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;b:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;c:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;d:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>a:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html
index 44ace0c..9308008 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#animateDecay(kotlin.Any,androidx.compose.animation.core.DecayAnimationSpec,kotlin.Function1)">animateDecay</a></code></td>
             <td></td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html#DecayAnimation(androidx.compose.animation.core.DecayAnimationSpec,androidx.compose.animation.core.TwoWayConverter,kotlin.Any,androidx.compose.animation.core.AnimationVector)">DecayAnimation</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;T,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialVelocityVector:&nbsp;V<br>)</code></div>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open T</code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -140,15 +140,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/Animation.html">androidx.compose.animation.core.Animation</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;T&gt;</code></td>
               <td>
@@ -209,10 +209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#animateDecay(kotlin.Any,androidx.compose.animation.core.DecayAnimationSpec,kotlin.Function1)">animateDecay</a></code></td>
               <td></td>
@@ -234,10 +234,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;T&gt;</code></td>
               <td>
@@ -269,10 +269,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html#animateDecay(kotlin.Any,androidx.compose.animation.core.DecayAnimationSpec,kotlin.Function1)">animateDecay</a></code></td>
               <td></td>
@@ -298,10 +298,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -320,10 +320,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html
index de2f3d0..6f7d4de 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html">VectorizedDecayAnimationSpec</a>&lt;V&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -66,10 +66,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -89,10 +89,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html
index 3c57f94..d6c0fa5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html">KeyframesSpec</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;V&gt;</code></td>
             <td>
@@ -70,10 +70,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Easing.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Easing.html
index 222023d..e301d78 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Easing.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Easing.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/CubicBezierEasing.html">CubicBezierEasing</a></code></td>
                 <td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/ExperimentalTransitionApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/ExperimentalTransitionApi.html
index 9048c0e..c08c0c8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/ExperimentalTransitionApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/ExperimentalTransitionApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/ExperimentalTransitionApi.html#ExperimentalTransitionApi()">ExperimentalTransitionApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html
index 3be4ba2..69b9ef9 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -45,7 +45,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html">KeyframesSpec</a></code></td>
                 <td>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/InfiniteRepeatableSpec.html">InfiniteRepeatableSpec</a></code></td>
             <td></td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">VectorizedFiniteAnimationSpec</a>&lt;V&gt;</code></td>
             <td>
@@ -115,10 +115,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html
index 31d37e6..4a9727c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/FloatSpringSpec.html">FloatSpringSpec</a></code></td>
                 <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">VectorizedAnimationSpec</a></code></td>
             <td></td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatDecayAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatDecayAnimationSpec.html
index ae13240..5d16cb4 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatDecayAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatDecayAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/FloatExponentialDecaySpec.html">FloatExponentialDecaySpec</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -97,10 +97,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimationSpec.html">DecayAnimationSpec</a>&lt;T&gt;</code></td>
             <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -148,10 +148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -176,10 +176,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -210,10 +210,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatExponentialDecaySpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatExponentialDecaySpec.html
index 8379859..ccad5a8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatExponentialDecaySpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatExponentialDecaySpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/FloatExponentialDecaySpec.html#FloatExponentialDecaySpec(kotlin.Float,kotlin.Float)">FloatExponentialDecaySpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;frictionMultiplier:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;absVelocityThreshold:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -93,10 +93,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>frictionMultiplier:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -212,10 +212,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatSpringSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatSpringSpec.html
index 6b41c1b..e4e7f45 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatSpringSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatSpringSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/FloatSpringSpec.html#FloatSpringSpec(kotlin.Float,kotlin.Float,kotlin.Float)">FloatSpringSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;stiffness:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;visibilityThreshold:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -96,15 +96,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html">androidx.compose.animation.core.FloatAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html">VectorizedFloatAnimationSpec</a>&lt;V&gt;</code></td>
                       <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = Spring.DampingRatioNoBouncy</code></td>
               <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -198,10 +198,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -232,10 +232,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -272,10 +272,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatTweenSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatTweenSpec.html
index b0af451..664d12f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatTweenSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/FloatTweenSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/FloatTweenSpec.html#FloatTweenSpec(kotlin.Int,kotlin.Int,androidx.compose.animation.core.Easing)">FloatTweenSpec</a>(duration:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;delay:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;easing:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html">androidx.compose.animation.core.FloatAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
                       <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>duration:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = DefaultDurationMillis</code></td>
               <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -198,10 +198,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -238,10 +238,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteAnimationPolicy.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteAnimationPolicy.html
index c1155fe..32c0e39 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteAnimationPolicy.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteAnimationPolicy.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/InfiniteAnimationPolicy.Key.html">InfiniteAnimationPolicy.Key</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend R</code></td>
             <td>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;*&gt;</code></td>
             <td>
@@ -67,15 +67,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -91,7 +91,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open R</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteRepeatableSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteRepeatableSpec.html
index ee2357b..147bb57 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteRepeatableSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteRepeatableSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#infiniteRepeatable(androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">infiniteRepeatable</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/InfiniteRepeatableSpec.html#InfiniteRepeatableSpec(androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">InfiniteRepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;repeatMode:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a><br>)</code></div>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;T&gt;</code></td>
             <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;T&gt;</code></td>
               <td>
@@ -145,10 +145,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteTransition.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteTransition.html
index 83964ef..6527e0a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteTransition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InfiniteTransition.html
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
             <td>
@@ -173,10 +173,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
@@ -227,10 +227,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateFloat(kotlin.Float,kotlin.Float,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateFloat</a></code></td>
               <td></td>
@@ -312,10 +312,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InternalAnimationApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InternalAnimationApi.html
index e83a2d3..7101a7f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InternalAnimationApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/InternalAnimationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/animation/core/InternalAnimationApi.html#InternalAnimationApi()">InternalAnimationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html
index 4ec4eea..6d83cfa 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html
index a947594..19b734f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html
@@ -27,10 +27,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html#keyframes()">keyframes</a></code></td>
             <td></td>
@@ -43,10 +43,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html#KeyframesSpecConfig()">KeyframesSpecConfig</a>()</code></div>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>infix <a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html">KeyframesSpec.KeyframeEntity</a>&lt;T&gt;</code></td>
             <td>
@@ -96,10 +96,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>timeStamp:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -148,10 +148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html">KeyframesSpec.KeyframeEntity</a>&lt;T&gt;</code></td>
               <td>
@@ -189,10 +189,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>easing:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html
index 08629a4..c7cd7d6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframeEntity.html">KeyframesSpec.KeyframeEntity</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html#KeyframesSpec(androidx.compose.animation.core.KeyframesSpec.KeyframesSpecConfig)">KeyframesSpec</a>(config:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a>&lt;T&gt;)</code></div>
@@ -80,10 +80,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -110,10 +110,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a>&lt;T&gt;</code></td>
             <td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html
index 15fe3b7..a430db7 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
             <td></td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;S&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html#MutableTransitionState(kotlin.Any)">MutableTransitionState</a>(initialState:&nbsp;S)</code></div>
@@ -101,10 +101,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>S</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatMode.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatMode.html
index 3527b70..ef2b1e7 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatMode.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatMode.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/RepeatMode.html#Restart">Restart</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatableSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatableSpec.html
index 259a17f..74edf85 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatableSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/RepeatableSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#repeatable(kotlin.Int,androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">repeatable</a></code></td>
             <td></td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/RepeatableSpec.html#RepeatableSpec(kotlin.Int,androidx.compose.animation.core.DurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">RepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;iterations:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;repeatMode:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a><br>)</code></div>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -86,10 +86,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;T&gt;</code></td>
             <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>iterations:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -166,10 +166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SnapSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SnapSpec.html
index 2ca1058..db61a28 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SnapSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SnapSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/SnapSpec.html#SnapSpec(kotlin.Int)">SnapSpec</a>(delay:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -84,10 +84,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delay:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -116,10 +116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Spring.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Spring.html
index 552545c..c9b12ab 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Spring.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Spring.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SpringSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SpringSpec.html
index ccbd909..8ea3662 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SpringSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/SpringSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/SpringSpec.html#SpringSpec(kotlin.Float,kotlin.Float,kotlin.Any)">SpringSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;stiffness:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;visibilityThreshold:&nbsp;T?<br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -98,10 +98,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = Spring.DampingRatioNoBouncy</code></td>
               <td>
@@ -142,10 +142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TargetBasedAnimation.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TargetBasedAnimation.html
index 361f5e1..5bf84eb 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TargetBasedAnimation.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TargetBasedAnimation.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Transition.html">Transition</a></code></td>
             <td></td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/TargetBasedAnimation.html#TargetBasedAnimation(androidx.compose.animation.core.AnimationSpec,androidx.compose.animation.core.TwoWayConverter,kotlin.Any,kotlin.Any,androidx.compose.animation.core.AnimationVector)">TargetBasedAnimation</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;T,<br>&nbsp;&nbsp;&nbsp;&nbsp;targetValue:&nbsp;T,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialVelocityVector:&nbsp;V?<br>)</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open T</code></td>
             <td>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -129,15 +129,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/Animation.html">androidx.compose.animation.core.Animation</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;T&gt;</code></td>
               <td>
@@ -211,10 +211,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -233,10 +233,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.Segment.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.Segment.html
index 3a6a6c1..1d4d42a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.Segment.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.Segment.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/AnimatedContentScope.html">AnimatedContentScope</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;infix <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>S</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.html
index 739f99c..95d4d2e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/Transition.html
@@ -102,10 +102,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
             <td></td>
@@ -130,10 +130,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Transition.Segment.html">Transition.Segment</a></code></td>
             <td>
@@ -147,10 +147,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>S</code></td>
             <td>
@@ -192,10 +192,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -428,10 +428,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
               <td></td>
@@ -550,10 +550,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;(T) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -591,10 +591,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -728,10 +728,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
               <td>
@@ -745,10 +745,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.Transition).animateValue(androidx.compose.animation.core.TwoWayConverter,kotlin.Function1,kotlin.String,kotlin.Function1)">animateValue</a></code></td>
               <td></td>
@@ -778,10 +778,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
               <td>
@@ -856,10 +856,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
               <td>
@@ -873,10 +873,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
@@ -906,10 +906,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>&gt;</code></td>
               <td>
@@ -931,10 +931,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;</code></td>
               <td>
@@ -956,10 +956,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
               <td>
@@ -983,10 +983,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a>&gt;</code></td>
               <td>
@@ -1008,10 +1008,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Rect.html">Rect</a>&gt;</code></td>
               <td>
@@ -1035,10 +1035,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a>&gt;</code></td>
               <td>
@@ -1060,10 +1060,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;T&gt;</code></td>
               <td>
@@ -1077,10 +1077,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TweenSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TweenSpec.html
index 53dcc16..7c9a58d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TweenSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TweenSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/animation/core/TweenSpec.html#TweenSpec(kotlin.Int,kotlin.Int,androidx.compose.animation.core.Easing)">TweenSpec</a>(durationMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;delay:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;easing:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -98,10 +98,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>durationMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = DefaultDurationMillis</code></td>
               <td>
@@ -142,10 +142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>converter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html
index dc08856..3f6325f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>(V) <span style="white-space: nowrap;">-&gt;</span> T</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>V</code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>V</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html
index 7696049..9930a26 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">VectorizedFiniteAnimationSpec</a></code></td>
                 <td>
@@ -39,7 +39,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animation.html">Animation</a></code></td>
             <td></td>
@@ -111,10 +111,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -150,10 +150,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -173,10 +173,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -207,10 +207,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -241,10 +241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html
index b7c4797..e207b4d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDecayAnimationSpec.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/DecayAnimation.html">DecayAnimation</a></code></td>
             <td></td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -123,10 +123,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -185,10 +185,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html
index a185faf..aa7c0b6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html">VectorizedKeyframesSpec</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V</code></td>
                       <td>
@@ -131,15 +131,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html
index 050e5ec..697ab20 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a></code></td>
                 <td>
@@ -51,7 +51,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html">VectorizedKeyframesSpec</a></code></td>
                 <td>
@@ -82,10 +82,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -100,15 +100,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html
index bc05cc7..d2fbc82 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFloatAnimationSpec.html#VectorizedFloatAnimationSpec(androidx.compose.animation.core.FloatAnimationSpec)">VectorizedFloatAnimationSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;anim:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html">FloatAnimationSpec</a><br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -72,15 +72,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -105,10 +105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>anim:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/FloatAnimationSpec.html">FloatAnimationSpec</a></code></td>
               <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -162,10 +162,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -196,10 +196,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html
index 2d95cb6..d6f3da1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedInfiniteRepeatableSpec.html#VectorizedInfiniteRepeatableSpec(androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">VectorizedInfiniteRepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;repeatMode:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -82,15 +82,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V</code></td>
                       <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;V&gt;</code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html
index 5021854..d5452b1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html
@@ -27,10 +27,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.html">KeyframesSpec</a></code></td>
             <td></td>
@@ -43,10 +43,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedKeyframesSpec.html#VectorizedKeyframesSpec(kotlin.collections.Map,kotlin.Int,kotlin.Int)">VectorizedKeyframesSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;keyframes:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;V,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a>&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;durationMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;delayMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><br>)</code></div>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open V</code></td>
             <td>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -109,15 +109,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V</code></td>
                       <td>
@@ -134,7 +134,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
                       <td>
@@ -154,15 +154,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -186,10 +186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>keyframes:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;V,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a>&gt;&gt;</code></td>
               <td>
@@ -221,10 +221,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -261,10 +261,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedRepeatableSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedRepeatableSpec.html
index 6d6832f..9f17173 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedRepeatableSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedRepeatableSpec.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedRepeatableSpec.html#VectorizedRepeatableSpec(kotlin.Int,androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec,androidx.compose.animation.core.RepeatMode)">VectorizedRepeatableSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;iterations:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">VectorizedDurationBasedAnimationSpec</a>&lt;V&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;repeatMode:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/RepeatMode.html">RepeatMode</a><br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
@@ -65,15 +65,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V</code></td>
                       <td>
@@ -93,15 +93,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -125,10 +125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>iterations:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -160,10 +160,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;V</code></td>
               <td>
@@ -194,10 +194,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -234,10 +234,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSnapSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSnapSpec.html
index 9006bdf..7b56233 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSnapSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSnapSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedSnapSpec.html#VectorizedSnapSpec(kotlin.Int)">VectorizedSnapSpec</a>(delayMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open V</code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -82,15 +82,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V</code></td>
                       <td>
@@ -107,7 +107,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
                       <td>
@@ -127,15 +127,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -159,10 +159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delayMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSpringSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSpringSpec.html
index 6301178..69ecddf 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSpringSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedSpringSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedSpringSpec.html#VectorizedSpringSpec(kotlin.Float,kotlin.Float,androidx.compose.animation.core.AnimationVector)">VectorizedSpringSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;stiffness:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;visibilityThreshold:&nbsp;V?<br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -56,15 +56,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
                       <td>
@@ -105,15 +105,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -138,10 +138,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = Spring.DampingRatioNoBouncy</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedTweenSpec.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedTweenSpec.html
index 54bf5d4..f9452dc 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedTweenSpec.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/VectorizedTweenSpec.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector.html">AnimationVector</a>&gt; <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedTweenSpec.html#VectorizedTweenSpec(kotlin.Int,kotlin.Int,androidx.compose.animation.core.Easing)">VectorizedTweenSpec</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;durationMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;delayMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;easing:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open V</code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedAnimationSpec.html">androidx.compose.animation.core.VectorizedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V</code></td>
                       <td>
@@ -114,7 +114,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedDurationBasedAnimationSpec.html">androidx.compose.animation.core.VectorizedDurationBasedAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
                       <td>
@@ -134,15 +134,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/animation/core/VectorizedFiniteAnimationSpec.html">androidx.compose.animation.core.VectorizedFiniteAnimationSpec</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -166,10 +166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>durationMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = DefaultDurationMillis</code></td>
               <td>
@@ -201,10 +201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -241,10 +241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/package-summary.html
index b1c9e62..14e097f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/core/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animation.html">Animation</a></code></td>
             <td>
@@ -106,7 +106,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html">Animatable</a></code></td>
             <td>
@@ -315,7 +315,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationConstants.html">AnimationConstants</a></code></td>
             <td></td>
@@ -332,7 +332,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/ExperimentalTransitionApi.html">ExperimentalTransitionApi</a></code></td>
             <td></td>
@@ -347,7 +347,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationEndReason.html">AnimationEndReason</a></code></td>
             <td>
@@ -366,7 +366,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html">Animatable</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
             <td>
@@ -611,7 +611,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -765,7 +765,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Easing.html">Easing</a></code></td>
             <td>
@@ -800,7 +800,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
             <td>
@@ -965,10 +965,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -993,10 +993,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1034,10 +1034,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
               <td>
@@ -1056,10 +1056,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>typeConverter:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -1103,10 +1103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -1125,10 +1125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1147,10 +1147,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1175,10 +1175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1209,10 +1209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>v1:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1250,10 +1250,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/FloatDecayAnimationSpec.html">FloatDecayAnimationSpec</a></code></td>
               <td>
@@ -1286,10 +1286,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;T&gt;</code></td>
               <td>
@@ -1332,10 +1332,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>convertToVector:&nbsp;(T) <span style="white-space: nowrap;">-&gt;</span> V</code></td>
               <td>
@@ -1405,10 +1405,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.AnimationState).animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Boolean,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -1426,10 +1426,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.AnimationState).animateTo(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Boolean,kotlin.Function1)">animateTo</a></code></td>
               <td></td>
@@ -1448,10 +1448,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/[JVM root]/package-summary.html">[JVM root]</a></code></td>
               <td>
@@ -1485,10 +1485,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -1514,10 +1514,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
               <td>
@@ -1559,10 +1559,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1594,10 +1594,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
               <td>
@@ -1618,10 +1618,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1647,10 +1647,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>&gt;</code></td>
               <td>
@@ -1693,10 +1693,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/IntOffset.html">IntOffset</a></code></td>
               <td>
@@ -1722,10 +1722,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;</code></td>
               <td>
@@ -1746,10 +1746,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a></code></td>
               <td>
@@ -1775,10 +1775,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
               <td>
@@ -1821,10 +1821,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
               <td>
@@ -1850,10 +1850,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a>&gt;</code></td>
               <td>
@@ -1876,10 +1876,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Rect.html">Rect</a></code></td>
               <td>
@@ -1905,10 +1905,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Rect.html">Rect</a>&gt;</code></td>
               <td>
@@ -1931,10 +1931,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
@@ -1960,10 +1960,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a>&gt;</code></td>
               <td>
@@ -2019,10 +2019,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;T</code></td>
               <td>
@@ -2056,10 +2056,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;T&gt;</code></td>
               <td>
@@ -2078,10 +2078,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>frictionMultiplier:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
@@ -2107,10 +2107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animation:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/DurationBasedAnimationSpec.html">DurationBasedAnimationSpec</a>&lt;T&gt;</code></td>
               <td>
@@ -2135,10 +2135,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>init:&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a>&lt;T&gt;.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2152,10 +2152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/KeyframesSpec.KeyframesSpecConfig.html">KeyframesSpec.KeyframesSpecConfig</a></code></td>
               <td></td>
@@ -2238,10 +2238,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>iterations:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -2272,10 +2272,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delayMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -2294,10 +2294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dampingRatio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = Spring.DampingRatioNoBouncy</code></td>
               <td>
@@ -2328,10 +2328,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>durationMillis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = DefaultDurationMillis</code></td>
               <td>
@@ -2450,10 +2450,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Transition.html">Transition</a>&lt;T&gt;</code></td>
               <td>
@@ -2467,10 +2467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Transition.html">Transition</a></code></td>
               <td></td>
@@ -2687,10 +2687,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
               <td>
@@ -2770,10 +2770,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
@@ -2850,10 +2850,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
               <td>
@@ -2867,10 +2867,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
@@ -2900,10 +2900,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>&gt;</code></td>
               <td>
@@ -2925,10 +2925,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntOffset.html">IntOffset</a>&gt;</code></td>
               <td>
@@ -2950,10 +2950,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt;</code></td>
               <td>
@@ -2977,10 +2977,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a>&gt;</code></td>
               <td>
@@ -3002,10 +3002,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Rect.html">Rect</a>&gt;</code></td>
               <td>
@@ -3029,10 +3029,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a>&gt;</code></td>
               <td>
@@ -3121,10 +3121,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateFloat(kotlin.Float,kotlin.Float,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateFloat</a></code></td>
               <td></td>
@@ -3148,10 +3148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;T&gt;</code></td>
               <td>
@@ -3165,10 +3165,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#updateTransition(kotlin.Any,kotlin.String)">updateTransition</a></code></td>
               <td></td>
@@ -3193,10 +3193,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -3215,10 +3215,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -3237,10 +3237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;T = this.value</code></td>
               <td>
@@ -3278,10 +3278,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -3300,10 +3300,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = this.value</code></td>
               <td>
@@ -3341,10 +3341,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector1D.html">AnimationVector1D</a>&gt;</code></td>
               <td>
@@ -3455,10 +3455,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>V</code></td>
               <td>
@@ -3482,10 +3482,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>playTimeNanos:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/animation/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/animation/package-summary.html
index 7920c8f..cda5a2a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/animation/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/animation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/AnimatedVisibilityScope.html">AnimatedVisibilityScope</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/AnimatedContentScope.html">AnimatedContentScope</a></code></td>
             <td>
@@ -71,7 +71,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a></code></td>
             <td></td>
@@ -82,7 +82,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterExitState.html">EnterExitState</a></code></td>
             <td>
@@ -95,7 +95,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/Animatable.html">Animatable</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html">AnimationVector4D</a>&gt;</code></td>
             <td>
@@ -288,7 +288,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -365,7 +365,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>(colorSpace:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/colorspace/ColorSpace.html">ColorSpace</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/compose/animation/core/TwoWayConverter.html">TwoWayConverter</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationVector4D.html">AnimationVector4D</a>&gt;</code></td>
             <td>
@@ -412,10 +412,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
               <td></td>
@@ -650,10 +650,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -691,10 +691,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -876,10 +876,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visibleState:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -917,10 +917,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -980,10 +980,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetState:&nbsp;T</code></td>
               <td>
@@ -1075,10 +1075,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -1154,10 +1154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>expandFrom:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a> = Alignment.End</code></td>
               <td>
@@ -1236,10 +1236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>expandFrom:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.html">Alignment</a> = Alignment.BottomEnd</code></td>
               <td>
@@ -1309,10 +1309,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>expandFrom:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Vertical.html">Alignment.Vertical</a> = Alignment.Bottom</code></td>
               <td>
@@ -1375,10 +1375,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 0.0f</code></td>
               <td>
@@ -1429,10 +1429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 0.0f</code></td>
               <td>
@@ -1499,10 +1499,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>shrinkTowards:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a> = Alignment.End</code></td>
               <td>
@@ -1581,10 +1581,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>shrinkTowards:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.html">Alignment</a> = Alignment.BottomEnd</code></td>
               <td>
@@ -1654,10 +1654,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>shrinkTowards:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Vertical.html">Alignment.Vertical</a> = Alignment.Bottom</code></td>
               <td>
@@ -1729,10 +1729,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialOffset:&nbsp;(fullSize:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/compose/ui/unit/IntOffset.html">IntOffset</a></code></td>
               <td>
@@ -1793,10 +1793,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialOffsetX:&nbsp;(fullWidth:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = { -it / 2 }</code></td>
               <td>
@@ -1851,10 +1851,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialOffsetY:&nbsp;(fullHeight:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = { -it / 2 }</code></td>
               <td>
@@ -1914,10 +1914,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetOffset:&nbsp;(fullSize:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/compose/ui/unit/IntOffset.html">IntOffset</a></code></td>
               <td>
@@ -1978,10 +1978,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetOffsetX:&nbsp;(fullWidth:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = { -it / 2 }</code></td>
               <td>
@@ -2007,10 +2007,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetOffsetY:&nbsp;(fullHeight:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = { -it / 2 }</code></td>
               <td>
@@ -2144,10 +2144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/ContentTransform.html">ContentTransform</a></code></td>
               <td></td>
@@ -2206,10 +2206,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2247,10 +2247,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -2327,10 +2327,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2368,10 +2368,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -2417,10 +2417,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visibleState:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -2458,10 +2458,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -2544,10 +2544,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visibleState:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -2585,10 +2585,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -2731,10 +2731,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;(T) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2772,10 +2772,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -2909,10 +2909,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
               <td>
@@ -2926,10 +2926,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.Transition).animateValue(androidx.compose.animation.core.TwoWayConverter,kotlin.Function1,kotlin.String,kotlin.Function1)">animateValue</a></code></td>
               <td></td>
@@ -3015,10 +3015,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/package-summary.html#(androidx.compose.animation.core.InfiniteTransition).animateValue(kotlin.Any,kotlin.Any,androidx.compose.animation.core.TwoWayConverter,androidx.compose.animation.core.InfiniteRepeatableSpec)">animateValue</a></code></td>
               <td></td>
@@ -3076,10 +3076,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/FiniteAnimationSpec.html">FiniteAnimationSpec</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/IntSize.html">IntSize</a>&gt; = spring()</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicLong.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicLong.html
index 6da2be6..f556981 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicLong.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicLong.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/AtomicLong.html#AtomicLong(kotlin.Long)">AtomicLong</a>(value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a>)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicReference.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicReference.html
index 4f4d498..028466e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicReference.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/AtomicReference.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/foundation/AtomicReference.html#AtomicReference(kotlin.Any)">AtomicReference</a>(value:&nbsp;V)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/BorderStroke.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/BorderStroke.html
index 2067fa1..38aedbd 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/BorderStroke.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/BorderStroke.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/BorderStroke.html#BorderStroke(androidx.compose.ui.unit.Dp,androidx.compose.ui.graphics.Brush)">BorderStroke</a>(width:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>,&nbsp;brush:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Brush.html">Brush</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/BorderStroke.html">BorderStroke</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Brush.html">Brush</a></code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>width:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html
index 8533267..2da24d8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html#ExperimentalFoundationApi()">ExperimentalFoundationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/Indication.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/Indication.html
index e94ece2..5b84131 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/Indication.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/Indication.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/foundation/IndicationInstance.html">IndicationInstance</a></code></td>
             <td>
@@ -42,10 +42,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>interactionSource:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
               <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/IndicationInstance.html">IndicationInstance</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/IndicationInstance.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/IndicationInstance.html
index 75054e9..bccac4c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/IndicationInstance.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/IndicationInstance.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/InternalFoundationApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/InternalFoundationApi.html
index 81a76c0..e763917 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/InternalFoundationApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/InternalFoundationApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/InternalFoundationApi.html#InternalFoundationApi()">InternalFoundationApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatePriority.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatePriority.html
index 7fe854b..65ae1f0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatePriority.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatePriority.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html#Default">Default</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatorMutex.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatorMutex.html
index e032460..3b6a785 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatorMutex.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/MutatorMutex.html
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/MutatorMutex.html#MutatorMutex()">MutatorMutex</a>()</code></div>
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend R</code></td>
             <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>priority:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a> = MutatePriority.Default</code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>receiver:&nbsp;T</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.Companion.html
index 3687612..8e31aa3 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/ScrollState.html">ScrollState</a>,&nbsp;*&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.html
index bc54963..df4f8f2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/ScrollState.html
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/ScrollState.html">ScrollState</a>,&nbsp;*&gt;</code></td>
             <td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/ScrollState.html#ScrollState(kotlin.Int)">ScrollState</a>(initial:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -146,10 +146,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
             <td>
@@ -195,10 +195,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -248,10 +248,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delta:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -265,10 +265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -294,10 +294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -311,10 +311,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -328,10 +328,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/ScrollState.html#animateScrollTo(kotlin.Int,androidx.compose.animation.core.AnimationSpec)">animateScrollTo</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/SomeJavaFile.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/SomeJavaFile.html
index d3b4513..b936eb3 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/SomeJavaFile.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/SomeJavaFile.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/SomeJavaFile.html#SomeJavaFile()">SomeJavaFile</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DragScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DragScope.html
index 8e40382..e9c2403 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DragScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DragScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DraggableState.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DraggableState.html
index c431ac8..499e085 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DraggableState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/DraggableState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -48,10 +48,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delta:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -72,10 +72,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dragPriority:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a> = MutatePriority.Default</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/FlingBehavior.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/FlingBehavior.html
index 061dfb2..9e9148a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/FlingBehavior.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/FlingBehavior.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -42,10 +42,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialVelocity:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/GestureCancellationException.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/GestureCancellationException.html
index cfd90ab..3b6469b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/GestureCancellationException.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/GestureCancellationException.html
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/GestureCancellationException.html#GestureCancellationException(kotlin.String)">GestureCancellationException</a>(message:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?)</code></div>
@@ -80,15 +80,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -161,15 +161,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>?</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/Orientation.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/Orientation.html
index 213dea4..6d4ecd0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/Orientation.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/Orientation.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/Orientation.html#Horizontal">Horizontal</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/PressGestureScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/PressGestureScope.html
index 2341639..faf2d3a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/PressGestureScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/PressGestureScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -41,15 +41,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/ui/unit/Density.html">androidx.compose.ui.unit.Density</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/ui/unit/Density.html">androidx.compose.ui.unit.Density</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollScope.html
index 3b74915..b219c42 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableDefaults.html
index e6d230a..a3f2089 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/foundation/gestures/FlingBehavior.html">FlingBehavior</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableState.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableState.html
index 5bea335..bf1e435 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/ScrollableState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html">LazyListState</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.foundation.gestures.ScrollableState).animateScrollBy(kotlin.Float,androidx.compose.animation.core.AnimationSpec)">animateScrollBy</a></code></td>
             <td></td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -103,10 +103,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -142,10 +142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delta:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -159,10 +159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -195,10 +195,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -241,10 +241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -275,10 +275,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.foundation.gestures.ScrollableState).animateScrollBy(kotlin.Float,androidx.compose.animation.core.AnimationSpec)">animateScrollBy</a></code></td>
               <td>
@@ -297,10 +297,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scrollPriority:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a> = MutatePriority.Default</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformScope.html
index 3a57c5c..e3bb50e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>zoomChange:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformableState.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformableState.html
index b0043e8..f68c4c8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformableState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/TransformableState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>offset:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
               <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>degrees:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -186,10 +186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>zoomFactor:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -214,10 +214,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>offset:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>degrees:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminationPriority:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a> = MutatePriority.Default</code></td>
               <td>
@@ -280,10 +280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>zoomFactor:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html
index eba4077..e3305ac 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/DragScope.html">DragScope</a></code></td>
             <td>
@@ -64,7 +64,7 @@
     <h2>Exceptions</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/GestureCancellationException.html">GestureCancellationException</a></code></td>
             <td>
@@ -77,7 +77,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/ScrollableDefaults.html">ScrollableDefaults</a></code></td>
             <td>
@@ -90,7 +90,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/Orientation.html">Orientation</a></code></td>
             <td>
@@ -103,7 +103,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/DraggableState.html">DraggableState</a></code></td>
             <td>
@@ -152,7 +152,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -419,10 +419,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onDelta:&nbsp;(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -442,10 +442,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>consumeScrollDelta:&nbsp;(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -465,10 +465,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onTransformation:&nbsp;(zoomChange:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>, panChange:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a>, rotationChange:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -488,10 +488,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onDelta:&nbsp;(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -511,10 +511,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>consumeScrollDelta:&nbsp;(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -534,10 +534,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onTransformation:&nbsp;(zoomChange:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>, panChange:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a>, rotationChange:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -557,10 +557,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>offset:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
               <td>
@@ -585,10 +585,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>degrees:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -614,10 +614,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -637,10 +637,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -659,10 +659,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>zoomFactor:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -753,10 +753,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitVerticalDragOrCancellation(androidx.compose.ui.input.pointer.PointerId)">awaitVerticalDragOrCancellation</a></code></td>
               <td></td>
@@ -845,10 +845,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).horizontalDrag(androidx.compose.ui.input.pointer.PointerId,kotlin.Function1)">horizontalDrag</a></code></td>
               <td></td>
@@ -932,10 +932,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a>?</code></td>
               <td>
@@ -950,10 +950,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitVerticalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitVerticalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -1040,10 +1040,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a>?</code></td>
               <td>
@@ -1058,10 +1058,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitHorizontalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -1141,10 +1141,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalDragOrCancellation(androidx.compose.ui.input.pointer.PointerId)">awaitHorizontalDragOrCancellation</a></code></td>
               <td></td>
@@ -1228,10 +1228,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/input/pointer/PointerInputChange.html">PointerInputChange</a>?</code></td>
               <td>
@@ -1246,10 +1246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitHorizontalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -1522,10 +1522,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectVerticalDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectVerticalDragGestures</a></code></td>
               <td></td>
@@ -1593,10 +1593,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectVerticalDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectVerticalDragGestures</a></code></td>
               <td></td>
@@ -1658,10 +1658,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectVerticalDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectVerticalDragGestures</a></code></td>
               <td></td>
@@ -1769,10 +1769,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.PointerInputScope).detectDragGestures(kotlin.Function1,kotlin.Function0,kotlin.Function0,kotlin.Function2)">detectDragGestures</a></code></td>
               <td></td>
@@ -1857,10 +1857,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1875,10 +1875,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -1949,10 +1949,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/gestures/DraggableState.html">DraggableState</a></code></td>
               <td>
@@ -2076,10 +2076,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitHorizontalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitHorizontalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -2108,10 +2108,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>offset:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
               <td>
@@ -2130,10 +2130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>degrees:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -2153,10 +2153,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -2170,10 +2170,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -2187,10 +2187,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.foundation.gestures.ScrollableState).animateScrollBy(kotlin.Float,androidx.compose.animation.core.AnimationSpec)">animateScrollBy</a></code></td>
               <td>
@@ -2240,10 +2240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/gestures/ScrollableState.html">ScrollableState</a></code></td>
               <td>
@@ -2292,10 +2292,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scrollPriority:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a> = MutatePriority.Default</code></td>
               <td>
@@ -2314,10 +2314,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminationPriority:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a> = MutatePriority.Default</code></td>
               <td>
@@ -2402,10 +2402,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/gestures/TransformableState.html">TransformableState</a></code></td>
               <td>
@@ -2493,10 +2493,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2511,10 +2511,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.input.pointer.AwaitPointerEventScope).awaitVerticalTouchSlopOrCancellation(androidx.compose.ui.input.pointer.PointerId,kotlin.Function2)">awaitVerticalTouchSlopOrCancellation</a></code></td>
               <td></td>
@@ -2548,10 +2548,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>zoomFactor:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html
index bafb819..9af0fda 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html#Cancel(androidx.compose.foundation.interaction.DragInteraction.Start)">Cancel</a>(start:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html
index dbdede0..915ac4a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html#Start()">Start</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Stop.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Stop.html
index cd89547..53e5acd 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Stop.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Stop.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Stop.html#Stop(androidx.compose.foundation.interaction.DragInteraction.Start)">Stop</a>(start:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Start.html">DragInteraction.Start</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.html
index aec69ac..9651941 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
                 <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/gestures/package-summary.html#(androidx.compose.ui.Modifier).draggable(androidx.compose.foundation.gestures.DraggableState,androidx.compose.foundation.gestures.Orientation,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,kotlin.Boolean,kotlin.coroutines.SuspendFunction2,kotlin.coroutines.SuspendFunction2,kotlin.Boolean)">draggable</a></code></td>
             <td></td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html
index a37af74..20d1720 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).focusable(kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource)">focusable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html#Focus()">Focus</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html
index 0db65b0..56525d8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).focusable(kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource)">focusable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Unfocus.html#Unfocus(androidx.compose.foundation.interaction.FocusInteraction.Focus)">Unfocus</a>(focus:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.html
index 60bb12a..dc66556 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a></code></td>
                 <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).focusable(kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource)">focusable</a></code></td>
             <td></td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/FocusInteraction.Focus.html">FocusInteraction.Focus</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/Interaction.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/Interaction.html
index 1fbc198..bb9a723 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/Interaction.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/Interaction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.html">DragInteraction</a></code></td>
                 <td>
@@ -45,7 +45,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
                 <td>
@@ -106,10 +106,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html
index 6a7f0c1..9a26d7e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
                 <td>
@@ -219,10 +219,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
             <td></td>
@@ -239,10 +239,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/interaction/Interaction.html">Interaction</a>&gt;</code></td>
             <td>
@@ -257,10 +257,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
             <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -461,10 +461,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html
index ec12fd7..ccd1f1a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
             <td></td>
@@ -38,10 +38,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -63,15 +63,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">androidx.compose.foundation.interaction.InteractionSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/interaction/Interaction.html">Interaction</a>&gt;</code></td>
                       <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html#tryEmit(androidx.compose.foundation.interaction.Interaction)">tryEmit</a></code></td>
               <td></td>
@@ -116,10 +116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html#emit(androidx.compose.foundation.interaction.Interaction)">emit</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html
index ee8a769..55fd4fe 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html#Cancel(androidx.compose.foundation.interaction.PressInteraction.Press)">Cancel</a>(press:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html
index 5ee95a5..b333d98 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html#Press(androidx.compose.ui.geometry.Offset)">Press</a>(pressPosition:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a>)</code></div>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/geometry/Offset.html">Offset</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Release.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Release.html
index 03f11f7..add23b5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Release.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Release.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Release.html#Release(androidx.compose.foundation.interaction.PressInteraction.Press)">Release</a>(press:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Press.html">PressInteraction.Press</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.html
index b2a29d2..6035466 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html">PressInteraction.Cancel</a></code></td>
                 <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#(androidx.compose.ui.Modifier).clickable(kotlin.Boolean,kotlin.String,androidx.compose.ui.semantics.Role,kotlin.Function0)">clickable</a></code></td>
             <td></td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/PressInteraction.Cancel.html">PressInteraction.Cancel</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/package-summary.html
index f012c11..95ab53a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/interaction/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.html">DragInteraction</a></code></td>
             <td>
@@ -52,7 +52,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/DragInteraction.Cancel.html">DragInteraction.Cancel</a></code></td>
             <td>
@@ -107,7 +107,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
             <td>
@@ -121,7 +121,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
             <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
               <td></td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -228,10 +228,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Absolute.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Absolute.html
index 50caec2..cf88f66 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Absolute.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Absolute.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>alignment:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a></code></td>
               <td>
@@ -136,10 +136,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>space:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -159,10 +159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>space:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -188,10 +188,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>space:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html
index ac5e57d..3741b3f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html">Arrangement.HorizontalOrVertical</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>totalSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html
index a1cfdc9..e27b8f7 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -34,15 +34,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html">androidx.compose.foundation.layout.Arrangement.Horizontal</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -59,7 +59,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Vertical.html">androidx.compose.foundation.layout.Arrangement.Vertical</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Vertical.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Vertical.html
index a4a767f..b1ce832 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Vertical.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Vertical.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.HorizontalOrVertical.html">Arrangement.HorizontalOrVertical</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>totalSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.html
index 677b7fc..a633f10 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/Arrangement.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Absolute.html">Arrangement.Absolute</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Vertical.html">Arrangement.Vertical</a></code></td>
             <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>alignment:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Horizontal.html">Alignment.Horizontal</a></code></td>
               <td>
@@ -189,10 +189,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>alignment:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Alignment.Vertical.html">Alignment.Vertical</a></code></td>
               <td>
@@ -211,10 +211,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>space:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -233,10 +233,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>space:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -261,10 +261,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>space:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxScope.html
index 60d5d44..588e5a2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxScope.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html">BoxWithConstraintsScope</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html
index d1436eb..3cc8618 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Constraints.html">Constraints</a></code></td>
             <td>
@@ -62,15 +62,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/layout/BoxScope.html">androidx.compose.foundation.layout.BoxScope</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
                       <td>
@@ -108,10 +108,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
@@ -152,10 +152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/BoxWithConstraintsScope.html#constraints()">constraints</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html
index 7a217f7..31826fd 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -235,10 +235,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fill:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a> = true</code></td>
               <td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -331,10 +331,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -413,10 +413,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visibleState:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -454,10 +454,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ExperimentalLayoutApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ExperimentalLayoutApi.html
index 8e00d2d..3f5e87a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ExperimentalLayoutApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/ExperimentalLayoutApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/layout/ExperimentalLayoutApi.html#ExperimentalLayoutApi()">ExperimentalLayoutApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/IntrinsicSize.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/IntrinsicSize.html
index 51ad9d9..e3bb46d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/IntrinsicSize.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/IntrinsicSize.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/IntrinsicSize.html#Max">Max</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/LayoutScopeMarker.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/LayoutScopeMarker.html
index 73be518..254b9b6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/LayoutScopeMarker.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/LayoutScopeMarker.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/layout/LayoutScopeMarker.html#LayoutScopeMarker()">LayoutScopeMarker</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html
index 8c64bd5..84117cf 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html#Absolute(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">Absolute</a>(left:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>,&nbsp;top:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>,&nbsp;right:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>,&nbsp;bottom:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.html
index 637db63..f5b4405 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html">PaddingValues.Absolute</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html">PaddingValues.Absolute</a></code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/RowScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/RowScope.html
index 6007250..1ec00b8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/RowScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/RowScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/animation/ExperimentalAnimationApi.html">ExperimentalAnimationApi</a> @<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -169,10 +169,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/RowScope.html#(androidx.compose.ui.Modifier).alignByBaseline()">alignByBaseline</a></code></td>
               <td>
@@ -259,10 +259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/RowScope.html#(androidx.compose.ui.Modifier).alignBy(androidx.compose.ui.layout.HorizontalAlignmentLine)">alignBy</a></code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fill:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a> = true</code></td>
               <td>
@@ -343,10 +343,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visible:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -384,10 +384,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -437,10 +437,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>visibleState:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/MutableTransitionState.html">MutableTransitionState</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -478,10 +478,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/EnterTransition.html">EnterTransition</a></code></td>
               <td></td>
@@ -539,10 +539,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/package-summary.html
index db5db35..30d0171 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/layout/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.Horizontal.html">Arrangement.Horizontal</a></code></td>
             <td>
@@ -64,7 +64,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.Absolute.html">PaddingValues.Absolute</a></code></td>
             <td>
@@ -77,7 +77,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/Arrangement.html">Arrangement</a></code></td>
             <td>
@@ -94,7 +94,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/ExperimentalLayoutApi.html">ExperimentalLayoutApi</a></code></td>
             <td></td>
@@ -109,7 +109,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/IntrinsicSize.html">IntrinsicSize</a></code></td>
             <td>
@@ -122,7 +122,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline @<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -192,7 +192,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -528,10 +528,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -604,10 +604,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
               <td>
@@ -645,10 +645,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -709,10 +709,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -738,10 +738,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#Row(androidx.compose.ui.Modifier,androidx.compose.foundation.layout.Arrangement.Horizontal,androidx.compose.ui.Alignment.Vertical,kotlin.Function1)">Row</a></code></td>
               <td></td>
@@ -801,10 +801,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -830,10 +830,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#Column(androidx.compose.ui.Modifier,androidx.compose.foundation.layout.Arrangement.Vertical,androidx.compose.ui.Alignment.Horizontal,kotlin.Function1)">Column</a></code></td>
               <td></td>
@@ -869,10 +869,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
               <td>
@@ -906,10 +906,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).offset(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">offset</a></code></td>
               <td>
@@ -946,10 +946,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).absoluteOffset(kotlin.Function1)">absoluteOffset</a></code></td>
               <td>
@@ -996,10 +996,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>ratio:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1080,10 +1080,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fraction:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
@@ -1127,10 +1127,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fraction:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
@@ -1174,10 +1174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fraction:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
@@ -1298,10 +1298,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).absoluteOffset(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">absoluteOffset</a></code></td>
               <td>
@@ -1339,10 +1339,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).absoluteOffset(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">absoluteOffset</a></code></td>
               <td>
@@ -1451,10 +1451,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>alignmentLine:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/layout/AlignmentLine.html">AlignmentLine</a></code></td>
               <td>
@@ -1480,10 +1480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFromBaseline(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFromBaseline</a></code></td>
               <td>
@@ -1517,10 +1517,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>alignmentLine:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/layout/AlignmentLine.html">AlignmentLine</a></code></td>
               <td>
@@ -1546,10 +1546,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFromBaseline(androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFromBaseline</a></code></td>
               <td>
@@ -1582,10 +1582,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFrom(androidx.compose.ui.layout.AlignmentLine,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFrom</a></code></td>
               <td>
@@ -1617,10 +1617,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/package-summary.html#(androidx.compose.ui.Modifier).paddingFrom(androidx.compose.ui.layout.AlignmentLine,androidx.compose.ui.unit.Dp,androidx.compose.ui.unit.Dp)">paddingFrom</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html
index 0da445b..6a27fa3 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html#Adaptive(androidx.compose.ui.unit.Dp)">Adaptive</a>(minSize:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Fixed.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Fixed.html
index b542700..000c5c6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Fixed.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Fixed.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Fixed.html#Fixed(kotlin.Int)">Fixed</a>(count:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html
index 922aa16..f03c988 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html">GridCells.Adaptive</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a><a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.Adaptive.html">GridCells.Adaptive</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html#GridCells()">GridCells</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyGridScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyGridScope.html
index 3a8cad3..e0250b8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyGridScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyGridScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline @<a href="/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -85,10 +85,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>content:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>count:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -137,10 +137,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>crossinline&nbsp;itemContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>.(item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -160,10 +160,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>crossinline&nbsp;itemContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>.(item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -210,10 +210,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;T&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html
index de1d676..2eefa43 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListItemInfo.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListItemInfo.html
index 9afb64d..000134f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListItemInfo.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListItemInfo.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyListLayoutInfo.html">LazyListLayoutInfo</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListLayoutInfo.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListLayoutInfo.html
index 7ca54d8..f134a0c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListLayoutInfo.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListLayoutInfo.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListScope.html
index f403326..4e6354c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -92,10 +92,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>? = null</code></td>
               <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>count:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -178,10 +178,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>? = null</code></td>
               <td>
@@ -208,10 +208,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;key:&nbsp;((item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>)? = null</code></td>
               <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;key:&nbsp;((item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>)? = null</code></td>
               <td>
@@ -265,10 +265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;T&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.Companion.html
index 87afc6b..435a8b6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html">LazyListState</a>,&nbsp;*&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html
index c9e909e..65ddb17 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html">LazyListState</a>,&nbsp;*&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyListState.html#LazyListState(kotlin.Int,kotlin.Int)">LazyListState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;firstVisibleItemIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;firstVisibleItemScrollOffset:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -146,10 +146,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>firstVisibleItemIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delta:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -252,10 +252,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyScopeMarker.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyScopeMarker.html
index bbe6944..239fa9c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyScopeMarker.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/LazyScopeMarker.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyScopeMarker.html#LazyScopeMarker()">LazyScopeMarker</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/package-summary.html
index 2d8c55b..7f78185 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/lazy/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyGridScope.html">LazyGridScope</a></code></td>
             <td>
@@ -46,7 +46,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html">GridCells</a></code></td>
             <td>
@@ -77,7 +77,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyScopeMarker.html">LazyScopeMarker</a></code></td>
             <td>
@@ -90,7 +90,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -125,7 +125,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -216,10 +216,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -302,10 +302,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -366,10 +366,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>cells:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/lazy/GridCells.html">GridCells</a></code></td>
               <td>
@@ -413,10 +413,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialFirstVisibleItemIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -443,10 +443,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;key:&nbsp;((item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>)? = null</code></td>
               <td>
@@ -472,10 +472,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;key:&nbsp;((item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>)? = null</code></td>
               <td>
@@ -501,10 +501,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>crossinline&nbsp;itemContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>.(item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -524,10 +524,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>crossinline&nbsp;itemContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/lazy/LazyItemScope.html">LazyItemScope</a>.(item) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -546,10 +546,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -580,10 +580,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;T&gt;</code></td>
               <td>
@@ -614,10 +614,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -642,10 +642,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;T&gt;</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/package-summary.html
index 5c2fe86..874a5e5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/Indication.html">Indication</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/AtomicLong.html">AtomicLong</a></code></td>
             <td></td>
@@ -65,7 +65,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/ExperimentalFoundationApi.html">ExperimentalFoundationApi</a></code></td>
             <td></td>
@@ -80,7 +80,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/MutatePriority.html">MutatePriority</a></code></td>
             <td>
@@ -93,7 +93,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/BorderStroke.html">BorderStroke</a></code></td>
             <td>
@@ -149,7 +149,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -261,7 +261,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/Indication.html">Indication</a>&gt;</code></td>
             <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>width:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -326,10 +326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
               <td>
@@ -378,10 +378,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bitmap:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/ImageBitmap.html">ImageBitmap</a></code></td>
               <td>
@@ -436,10 +436,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>imageVector:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/vector/ImageVector.html">ImageVector</a></code></td>
               <td>
@@ -518,10 +518,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>painter:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/painter/Painter.html">Painter</a></code></td>
               <td>
@@ -589,10 +589,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -667,10 +667,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -699,10 +699,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>color:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -743,10 +743,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>brush:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Brush.html">Brush</a></code></td>
               <td>
@@ -788,10 +788,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>shape:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Shape.html">Shape</a> = RectangleShape</code></td>
               <td>
@@ -825,10 +825,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>width:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -876,10 +876,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>width:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -922,10 +922,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a> = true</code></td>
               <td>
@@ -973,10 +973,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>interactionSource:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
               <td>
@@ -1037,10 +1037,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a> = true</code></td>
               <td>
@@ -1107,10 +1107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>interactionSource:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/MutableInteractionSource.html">MutableInteractionSource</a></code></td>
               <td>
@@ -1214,10 +1214,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a> = true</code></td>
               <td>
@@ -1260,10 +1260,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/ScrollState.html">ScrollState</a></code></td>
               <td>
@@ -1295,10 +1295,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#rememberScrollState(kotlin.Int)">rememberScrollState</a></code></td>
               <td></td>
@@ -1352,10 +1352,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>interactionSource:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
               <td>
@@ -1387,10 +1387,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -1456,10 +1456,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/ScrollState.html">ScrollState</a></code></td>
               <td>
@@ -1491,10 +1491,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/package-summary.html#rememberScrollState(kotlin.Int)">rememberScrollState</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/selection/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/selection/package-summary.html
index b64dbfe..e9169e1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/selection/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/selection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a></code></td>
             <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -247,10 +247,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).triStateToggleable(androidx.compose.ui.state.ToggleableState,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function0)">triStateToggleable</a></code></td>
               <td>
@@ -317,10 +317,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -363,10 +363,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).triStateToggleable(androidx.compose.ui.state.ToggleableState,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function0)">triStateToggleable</a></code></td>
               <td>
@@ -405,10 +405,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a></code></td>
               <td>
@@ -440,10 +440,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).toggleable(kotlin.Boolean,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function1)">toggleable</a></code></td>
               <td>
@@ -482,10 +482,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a></code></td>
               <td>
@@ -529,10 +529,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/selection/package-summary.html#(androidx.compose.ui.Modifier).toggleable(kotlin.Boolean,kotlin.Boolean,androidx.compose.ui.semantics.Role,kotlin.Function1)">toggleable</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html
index 72fa940..4812f1a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html#AbsoluteCutCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">AbsoluteCutCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;topLeft:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;topRight:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomRight:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomLeft:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a><br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topLeft:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html
index 4b2a787..3ed1010 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html#AbsoluteRoundedCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">AbsoluteRoundedCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;topLeft:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;topRight:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomRight:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomLeft:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a><br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteRoundedCornerShape.html">AbsoluteRoundedCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topLeft:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html
index dd2daee..081e8b5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
                 <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html#CornerBasedShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">CornerBasedShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;topEnd:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomEnd:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a><br>)</code></div>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
             <td>
@@ -123,10 +123,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
             <td>
@@ -166,10 +166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -207,10 +207,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a> = this.topStart</code></td>
               <td>
@@ -247,10 +247,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>all:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -273,10 +273,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html
index c8bcb55..cc6d465 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>shapeSize:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CutCornerShape.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CutCornerShape.html
index 83ead6d..07dfada 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CutCornerShape.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/CutCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CutCornerShape.html#CutCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">CutCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;topEnd:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomEnd:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a><br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/foundation/shape/CutCornerShape.html">CutCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/GenericShape.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/GenericShape.html
index 47f94f1..c64f414 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/GenericShape.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/GenericShape.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/shape/GenericShape.html#GenericShape(kotlin.Function3)">GenericShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;builder:&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/ui/graphics/Path.html">Path</a>.(size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a>, layoutDirection:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/LayoutDirection.html">LayoutDirection</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/ui/graphics/Outline.html">Outline</a></code></td>
             <td>
@@ -65,10 +65,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>builder:&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/ui/graphics/Path.html">Path</a>.(size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a>, layoutDirection:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/LayoutDirection.html">LayoutDirection</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html
index 5015d23..f5df6e6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html#RoundedCornerShape(androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize,androidx.compose.foundation.shape.CornerSize)">RoundedCornerShape</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;topEnd:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomEnd:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a><br>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -94,15 +94,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
                       <td>
@@ -128,15 +128,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">androidx.compose.foundation.shape.CornerBasedShape</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
                       <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStart:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/geometry/Size.html">Size</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/package-summary.html
index cab544c..61475f6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/shape/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -65,7 +65,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/AbsoluteCutCornerShape.html">AbsoluteCutCornerShape</a></code></td>
             <td>
@@ -289,7 +289,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/RoundedCornerShape.html">RoundedCornerShape</a></code></td>
             <td>
@@ -316,10 +316,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>corner:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -338,10 +338,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -360,10 +360,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -382,10 +382,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>percent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -414,10 +414,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topLeftPercent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -454,10 +454,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>corner:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -476,10 +476,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -498,10 +498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -520,10 +520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>percent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -552,10 +552,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topLeftPercent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -592,10 +592,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -614,10 +614,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -636,10 +636,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>percent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -658,10 +658,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>corner:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -680,10 +680,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -702,10 +702,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -724,10 +724,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>percent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -756,10 +756,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStartPercent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
@@ -796,10 +796,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>corner:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerSize.html">CornerSize</a></code></td>
               <td>
@@ -818,10 +818,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
@@ -840,10 +840,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>size:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -862,10 +862,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>percent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -894,10 +894,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>topStartPercent:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a> = 0</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html
index 3bb3365..0e15565 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/package-summary.html#BasicText(kotlin.String,androidx.compose.ui.Modifier,androidx.compose.ui.text.TextStyle,kotlin.Function1,androidx.compose.ui.text.style.TextOverflow,kotlin.Boolean,kotlin.Int)">BasicText</a></code></td>
             <td></td>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html#InlineTextContent(androidx.compose.ui.text.Placeholder,kotlin.Function1)">InlineTextContent</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;placeholder:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/Placeholder.html">Placeholder</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;children:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> (<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a><br>)</code></div>
@@ -92,10 +92,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> (<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -132,10 +132,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/text/Placeholder.html">Placeholder</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InternalFoundationTextApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InternalFoundationTextApi.html
index 6749e4f..902ade1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InternalFoundationTextApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/InternalFoundationTextApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/text/InternalFoundationTextApi.html#InternalFoundationTextApi()">InternalFoundationTextApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html
index 6523668..989dae5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.Companion.html
index 8692dd7..151657b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html">KeyboardActions</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html
index f7d6072..42a0e85 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html">KeyboardActions</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActions.html#KeyboardActions(kotlin.Function1,kotlin.Function1,kotlin.Function1,kotlin.Function1,kotlin.Function1,kotlin.Function1)">KeyboardActions</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;onDone:&nbsp;(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?,<br>&nbsp;&nbsp;&nbsp;&nbsp;onGo:&nbsp;(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?,<br>&nbsp;&nbsp;&nbsp;&nbsp;onNext:&nbsp;(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?,<br>&nbsp;&nbsp;&nbsp;&nbsp;onPrevious:&nbsp;(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?,<br>&nbsp;&nbsp;&nbsp;&nbsp;onSearch:&nbsp;(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?,<br>&nbsp;&nbsp;&nbsp;&nbsp;onSend:&nbsp;(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?<br>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>(@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.Companion.html
index 5c33450..c1ac532 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html">KeyboardOptions</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html
index f072ef9..8ae7027 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html">KeyboardOptions</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html#KeyboardOptions(androidx.compose.ui.text.input.KeyboardCapitalization,kotlin.Boolean,androidx.compose.ui.text.input.KeyboardType,androidx.compose.ui.text.input.ImeAction)">KeyboardOptions</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;capitalization:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/KeyboardCapitalization.html">KeyboardCapitalization</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;autoCorrect:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;keyboardType:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/KeyboardType.html">KeyboardType</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;imeAction:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/ImeAction.html">ImeAction</a><br>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardOptions.html">KeyboardOptions</a></code></td>
             <td>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -134,10 +134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>capitalization:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/KeyboardCapitalization.html">KeyboardCapitalization</a> = KeyboardCapitalization.None</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/package-summary.html
index 514b951..ec2298c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/KeyboardActionScope.html">KeyboardActionScope</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html">InlineTextContent</a></code></td>
             <td>
@@ -47,7 +47,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/InternalFoundationTextApi.html">InternalFoundationTextApi</a></code></td>
             <td></td>
@@ -58,7 +58,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -107,7 +107,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -127,10 +127,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>text:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -185,10 +185,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>text:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/AnnotatedString.html">AnnotatedString</a></code></td>
               <td>
@@ -320,10 +320,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -499,10 +499,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/TextFieldValue.html">TextFieldValue</a></code></td>
               <td>
@@ -647,10 +647,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>text:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/AnnotatedString.html">AnnotatedString</a></code></td>
               <td>
@@ -706,10 +706,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/package-summary.html#BasicText(kotlin.String,androidx.compose.ui.Modifier,androidx.compose.ui.text.TextStyle,kotlin.Function1,androidx.compose.ui.text.style.TextOverflow,kotlin.Boolean,kotlin.Int)">BasicText</a></code></td>
               <td></td>
@@ -780,10 +780,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>id:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -803,10 +803,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalArgumentException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a></code></td>
               <td>
@@ -820,10 +820,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/InlineTextContent.html">InlineTextContent</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html
index daad6ab..476d3ba 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html#TextSelectionColors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">TextSelectionColors</a>(handleColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,&nbsp;backgroundColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/package-summary.html
index 9414b2f..7635920 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/foundation/text/selection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html">TextSelectionColors</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -43,7 +43,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="/reference/kotlin/androidx/compose/foundation/text/selection/TextSelectionColors.html">TextSelectionColors</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/AppBarDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/AppBarDefaults.html
index f86a7c3..c412553 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/AppBarDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/AppBarDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldDefaults.html
index d21d94f..0fe969c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.Companion.html
index 94999cf..0ceb02e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html">BackdropScaffoldState</a>,&nbsp;*&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html
index 41094eb..ca79fb3 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html">BackdropScaffoldState</a>,&nbsp;*&gt;</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html#BackdropScaffoldState(androidx.compose.material.BackdropValue,androidx.compose.animation.core.AnimationSpec,kotlin.Function1,androidx.compose.material.SnackbarHostState)">BackdropScaffoldState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BackdropValue.html">BackdropValue</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(<a href="/reference/kotlin/androidx/compose/material/BackdropValue.html">BackdropValue</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;snackbarHostState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a><br>)</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -93,10 +93,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -125,15 +125,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -174,15 +174,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BackdropValue.html">BackdropValue</a></code></td>
                       <td>
@@ -254,10 +254,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BackdropValue.html">BackdropValue</a></code></td>
               <td>
@@ -295,10 +295,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -317,10 +317,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropValue.html
index e1d1acd..69eca6d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BackdropValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BackdropValue.html#Concealed">Concealed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.Companion.html
index 527d4ad..1f065bf 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerState.html">BottomDrawerState</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.html
index 571dc25..a1e7975 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerState.html">BottomDrawerState</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>&gt;</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/BottomDrawerState.html#BottomDrawerState(androidx.compose.material.BottomDrawerValue,kotlin.Function1)">BottomDrawerState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(<a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -132,15 +132,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -181,15 +181,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a></code></td>
                       <td>
@@ -261,10 +261,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a></code></td>
               <td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlinx.coroutines.CancellationException:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a></code></td>
               <td>
@@ -312,10 +312,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlinx.coroutines.CancellationException:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a></code></td>
               <td>
@@ -334,10 +334,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlinx.coroutines.CancellationException:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerValue.html
index 1a04b2a..1539923 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomDrawerValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html#Closed">Closed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomNavigationDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomNavigationDefaults.html
index 90554b3..7fe37b0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomNavigationDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomNavigationDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldDefaults.html
index cc17f76..24960ff 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldState.html
index fd6c300..3752c0d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetScaffoldState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/BottomSheetScaffoldState.html#BottomSheetScaffoldState(androidx.compose.material.DrawerState,androidx.compose.material.BottomSheetState,androidx.compose.material.SnackbarHostState)">BottomSheetScaffoldState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;drawerState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;bottomSheetState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomSheetState.html">BottomSheetState</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;snackbarHostState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BottomSheetState.html">BottomSheetState</a></code></td>
             <td>
@@ -68,10 +68,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>drawerState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.Companion.html
index 733a401..ea4dd2b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/BottomSheetState.html">BottomSheetState</a>,&nbsp;*&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.html
index 6f4e002..8a7372e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/BottomSheetState.html">BottomSheetState</a>,&nbsp;*&gt;</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/BottomSheetState.html#BottomSheetState(androidx.compose.material.BottomSheetValue,androidx.compose.animation.core.AnimationSpec,kotlin.Function1)">BottomSheetState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(<a href="/reference/kotlin/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -93,10 +93,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -118,15 +118,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -167,15 +167,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a></code></td>
                       <td>
@@ -247,10 +247,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a></code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -304,10 +304,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetValue.html
index 5736f62..5b5b597 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/BottomSheetValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BottomSheetValue.html#Collapsed">Collapsed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonColors.html
index b1e21f6..b523b34 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -47,10 +47,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -69,10 +69,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonDefaults.html
index 6675d2a..136f487 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/ButtonColors.html">ButtonColors</a></code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.html">PaddingValues</a></code></td>
             <td>
@@ -153,10 +153,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>backgroundColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.primary</code></td>
               <td>
@@ -195,10 +195,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>defaultElevation:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a> = 2.dp</code></td>
               <td>
@@ -230,10 +230,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>backgroundColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.surface</code></td>
               <td>
@@ -266,10 +266,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>backgroundColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = Color.Transparent</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonElevation.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonElevation.html
index 929f51e..5ed5389 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonElevation.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ButtonElevation.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxColors.html
index e390808..bc81876 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -82,10 +82,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -110,10 +110,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxDefaults.html
index e613849..ea20771 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/CheckboxDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/CheckboxColors.html">CheckboxColors</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>checkedColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.secondary</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/Colors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/Colors.html
index ba76e23..8d34fb2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/Colors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/Colors.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/Colors.html#Colors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,kotlin.Boolean)">Colors</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;primary:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;primaryVariant:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;secondary:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;secondaryVariant:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;background:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;surface:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;error:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;onPrimary:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;onSecondary:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;onBackground:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;onSurface:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;onError:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;isLight:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/Colors.html">Colors</a></code></td>
             <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -161,10 +161,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ContentAlpha.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ContentAlpha.html
index 49e0fe5..b46fa64 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ContentAlpha.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ContentAlpha.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissDirection.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissDirection.html
index 9f5e367..8cb3eef 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissDirection.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissDirection.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DismissDirection.html#EndToStart">EndToStart</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.Companion.html
index f26220b..2c91ec0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/DismissState.html">DismissState</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.html
index 068eafc..0a85355 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/DismissState.html">DismissState</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a>&gt;</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/DismissState.html#DismissState(androidx.compose.material.DismissValue,kotlin.Function1)">DismissState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(<a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DismissDirection.html">DismissDirection</a>?</code></td>
             <td>
@@ -118,15 +118,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -167,15 +167,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a></code></td>
                       <td>
@@ -247,10 +247,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a></code></td>
               <td>
@@ -276,10 +276,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>direction:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissDirection.html">DismissDirection</a></code></td>
               <td>
@@ -298,10 +298,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>direction:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissDirection.html">DismissDirection</a></code></td>
               <td>
@@ -320,10 +320,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissValue.html
index 75b9c11..953a805 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DismissValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DismissValue.html#Default">Default</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerDefaults.html
index 51bc8d7..91ecdb4 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.Companion.html
index 685e104..8944a39 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.html
index ef90c35..334a9bd 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a>,&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a>&gt;</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/DrawerState.html#DrawerState(androidx.compose.material.DrawerValue,kotlin.Function1)">DrawerState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a></code></td>
             <td>
@@ -152,10 +152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a></code></td>
               <td>
@@ -181,10 +181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a></code></td>
               <td>
@@ -209,10 +209,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -253,10 +253,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerValue.html
index f0454c4..3208861 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/DrawerValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DrawerValue.html#Closed">Closed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ElevationOverlay.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ElevationOverlay.html
index a40c842..db18f10 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ElevationOverlay.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ElevationOverlay.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html
index d3c3da9..aa55e4d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html#ExperimentalMaterialApi()">ExperimentalMaterialApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.Companion.html
index 5652dc1..4dfaa64 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/FabPosition.html">FabPosition</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.html
index 980f6bf..21a9570 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/FabPosition.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/FabPosition.html">FabPosition</a></code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/FixedThreshold.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/FixedThreshold.html
index e380e3e..ab59bf2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/FixedThreshold.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/FixedThreshold.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/FixedThreshold.html#FixedThreshold(androidx.compose.ui.unit.Dp)">FixedThreshold</a>(offset:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>offset:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonDefaults.html
index fa89620..89e2fa0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/FloatingActionButtonElevation.html">FloatingActionButtonElevation</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>defaultElevation:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a> = 6.dp</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonElevation.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonElevation.html
index 48b6f03..f741ae8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonElevation.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/FloatingActionButtonElevation.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>interactionSource:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/interaction/InteractionSource.html">InteractionSource</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/FractionalThreshold.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/FractionalThreshold.html
index 74b046f..a48fef7 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/FractionalThreshold.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/FractionalThreshold.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/FractionalThreshold.html#FractionalThreshold(kotlin.Float)">FractionalThreshold</a>(fraction:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fraction:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/MaterialTheme.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/MaterialTheme.html
index 34d820e..d604f03 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/MaterialTheme.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/MaterialTheme.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/Colors.html">Colors</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/MenuDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/MenuDefaults.html
index d5554fe..1a84e86 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/MenuDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/MenuDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/layout/PaddingValues.html">PaddingValues</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetDefaults.html
index 49a5b94..ea490c2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.Companion.html
index 2c9a2ec..dbe1061 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html">ModalBottomSheetState</a>,&nbsp;*&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html
index 4cad752..856446d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html">ModalBottomSheetState</a>,&nbsp;*&gt;</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetState.html#ModalBottomSheetState(androidx.compose.material.ModalBottomSheetValue,androidx.compose.animation.core.AnimationSpec,kotlin.Function1)">ModalBottomSheetState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(<a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -93,10 +93,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -111,15 +111,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -160,15 +160,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">androidx.compose.material.SwipeableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a></code></td>
                       <td>
@@ -240,10 +240,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a></code></td>
               <td>
@@ -275,10 +275,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlinx.coroutines.CancellationException:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a></code></td>
               <td>
@@ -297,10 +297,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlinx.coroutines.CancellationException:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-cancellation-exception/index.html">kotlinx.coroutines.CancellationException</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html
index ba82137..ab4751d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html#Expanded">Expanded</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ProgressIndicatorDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ProgressIndicatorDefaults.html
index 87b562d..471447c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ProgressIndicatorDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ProgressIndicatorDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/SpringSpec.html">SpringSpec</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonColors.html
index 17371a8..b6183d1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonDefaults.html
index 34c2d4f..7c9979a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/RadioButtonDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/RadioButtonColors.html">RadioButtonColors</a></code></td>
             <td>
@@ -39,10 +39,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selectedColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.secondary</code></td>
               <td>
@@ -68,10 +68,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/RadioButtonColors.html">RadioButtonColors</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ResistanceConfig.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ResistanceConfig.html
index d309e70..55906ab 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ResistanceConfig.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ResistanceConfig.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/ResistanceConfig.html#ResistanceConfig(kotlin.Float,kotlin.Float,kotlin.Float)">ResistanceConfig</a>(basis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;factorAtMin:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;factorAtMax:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -70,10 +70,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -106,10 +106,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>basis:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ScaffoldState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ScaffoldState.html
index e66fb09..886afbc 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ScaffoldState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ScaffoldState.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/ScaffoldState.html#ScaffoldState(androidx.compose.material.DrawerState,androidx.compose.material.SnackbarHostState)">ScaffoldState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;drawerState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;snackbarHostState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a><br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a></code></td>
             <td>
@@ -62,10 +62,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>drawerState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/Shapes.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/Shapes.html
index 39621f7..b22a57b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/Shapes.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/Shapes.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/Shapes.html#Shapes(androidx.compose.foundation.shape.CornerBasedShape,androidx.compose.foundation.shape.CornerBasedShape,androidx.compose.foundation.shape.CornerBasedShape)">Shapes</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;small:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;medium:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;large:&nbsp;<a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a><br>)</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/Shapes.html">Shapes</a></code></td>
             <td>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/foundation/shape/CornerBasedShape.html">CornerBasedShape</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderColors.html
index 087e212..9d3720f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -77,10 +77,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -106,10 +106,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderDefaults.html
index 83ac113..872a7f7 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SliderDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/SliderColors.html">SliderColors</a></code></td>
             <td>
@@ -115,10 +115,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>thumbColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.primary</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarData.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarData.html
index a329f47..a685564 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarData.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarData.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDefaults.html
index 3aed0a7..78ec0f5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDuration.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDuration.html
index 7ba19cd..8f08b45 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDuration.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarDuration.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/SnackbarDuration.html#Indefinite">Indefinite</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarHostState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarHostState.html
index 79b93e9..2b86b33 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarHostState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarHostState.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/SnackbarHostState.html#SnackbarHostState()">SnackbarHostState</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="/reference/kotlin/androidx/compose/material/SnackbarResult.html">SnackbarResult</a></code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/SnackbarData.html">SnackbarData</a>?</code></td>
             <td>
@@ -136,10 +136,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>message:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -165,10 +165,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/SnackbarResult.html">SnackbarResult</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarResult.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarResult.html
index 247ba1f..20a291e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarResult.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SnackbarResult.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/SnackbarResult.html#ActionPerformed">ActionPerformed</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeProgress.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeProgress.html
index bf5e7b8..c1d1013 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeProgress.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeProgress.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/material/SwipeProgress.html#SwipeProgress(kotlin.Any,kotlin.Any,kotlin.Float)">SwipeProgress</a>(from:&nbsp;T,&nbsp;to:&nbsp;T,&nbsp;fraction:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -98,10 +98,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>from:&nbsp;T</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableDefaults.html
index f24499c..044d74e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ResistanceConfig.html">ResistanceConfig</a>?</code></td>
             <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/SpringSpec.html">SpringSpec</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.Companion.html
index 34c409c..20fdd72 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">SwipeableState</a>&lt;T&gt;,&nbsp;T&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.html
index 82ba869..343d857 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwipeableState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html">BackdropScaffoldState</a></code></td>
                 <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a>&lt;<a href="/reference/kotlin/androidx/compose/material/SwipeableState.html">SwipeableState</a>&lt;T&gt;,&nbsp;T&gt;</code></td>
             <td>
@@ -77,10 +77,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/material/SwipeableState.html#SwipeableState(kotlin.Any,androidx.compose.animation.core.AnimationSpec,kotlin.Function1)">SwipeableState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;initialValue:&nbsp;T,<br>&nbsp;&nbsp;&nbsp;&nbsp;animationSpec:&nbsp;<a href="/reference/kotlin/androidx/compose/animation/core/AnimationSpec.html">AnimationSpec</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;confirmStateChange:&nbsp;(newValue) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -93,10 +93,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend @<a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -132,10 +132,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -202,10 +202,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;T</code></td>
               <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;T</code></td>
               <td>
@@ -267,10 +267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>delta:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -284,10 +284,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>velocity:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -346,10 +346,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>targetValue:&nbsp;T</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchColors.html
index 7f7ef01..bc4333e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -47,10 +47,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchDefaults.html
index 7bc8f20..00f4d32 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/SwitchDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/SwitchColors.html">SwitchColors</a></code></td>
             <td>
@@ -47,10 +47,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>checkedThumbColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.secondaryVariant</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/TabPosition.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/TabPosition.html
index c96f3ec..9d14879 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/TabPosition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/TabPosition.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/TabRowDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/TabRowDefaults.html
index 6065128..149c631 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/TabRowDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/TabRowDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>currentTabPosition:&nbsp;<a href="/reference/kotlin/androidx/compose/material/TabPosition.html">TabPosition</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldColors.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldColors.html
index 3035fac..a37f586 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldColors.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldColors.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a>&gt;</code></td>
             <td>
@@ -89,10 +89,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isError:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -133,10 +133,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -201,10 +201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -229,10 +229,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -251,10 +251,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -273,10 +273,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldDefaults.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldDefaults.html
index 4c0bc94..29fbec1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldDefaults.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/TextFieldDefaults.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/material/TextFieldColors.html">TextFieldColors</a></code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ThresholdConfig.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ThresholdConfig.html
index 0b9b19a..b91ac24 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ThresholdConfig.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ThresholdConfig.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/FixedThreshold.html">FixedThreshold</a></code></td>
                 <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/Typography.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/Typography.html
index e0c136d..219ee94 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/Typography.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/Typography.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/Typography.html#Typography(androidx.compose.ui.text.font.FontFamily,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle,androidx.compose.ui.text.TextStyle)">Typography</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;defaultFontFamily:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/font/FontFamily.html">FontFamily</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;h1:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;h2:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;h3:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;h4:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;h5:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;h6:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;subtitle1:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;subtitle2:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;body1:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;body2:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;button:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;caption:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;overline:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a><br>)</code></div>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/Typography.html">Typography</a></code></td>
             <td>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/text/TextStyle.html">TextStyle</a></code></td>
             <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>defaultFontFamily:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/font/FontFamily.html">FontFamily</a> = FontFamily.Default</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/Icons.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/Icons.html
index b63a712..a78ac34 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/Icons.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/Icons.html
@@ -28,10 +28,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/icons/Icons.Filled.html">Icons.Filled</a></code></td>
             <td>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/icons/Icons.Filled.html">Icons.Filled</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/package-summary.html
index ec14917..500253d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/icons/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/icons/Icons.html">Icons</a></code></td>
             <td>
@@ -52,7 +52,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="/reference/kotlin/androidx/compose/ui/graphics/vector/ImageVector.html">ImageVector</a></code></td>
             <td>
@@ -66,7 +66,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="/reference/kotlin/androidx/compose/ui/graphics/vector/ImageVector.Builder.html">ImageVector.Builder</a></code></td>
             <td>
@@ -86,10 +86,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>name:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -115,10 +115,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fillAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a> = 1.0f</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/package-summary.html
index 0c65eb6..bb0bda4 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ButtonColors.html">ButtonColors</a></code></td>
             <td>
@@ -82,7 +82,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BackdropScaffoldState.html">BackdropScaffoldState</a></code></td>
             <td>
@@ -203,7 +203,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/AppBarDefaults.html">AppBarDefaults</a></code></td>
             <td>
@@ -330,7 +330,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ExperimentalMaterialApi.html">ExperimentalMaterialApi</a></code></td>
             <td></td>
@@ -341,7 +341,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/BackdropValue.html">BackdropValue</a></code></td>
             <td>
@@ -402,7 +402,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -885,7 +885,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -913,7 +913,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="/reference/kotlin/androidx/compose/ui/unit/Dp.html">Dp</a>&gt;</code></td>
             <td>
@@ -955,7 +955,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -1025,10 +1025,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onDismissRequest:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -1145,10 +1145,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onDismissRequest:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -1306,10 +1306,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>appBar:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> () <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -1455,10 +1455,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -1588,10 +1588,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>drawerContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -1691,10 +1691,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -1837,10 +1837,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>sheetContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2006,10 +2006,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2086,10 +2086,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -2149,10 +2149,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2249,10 +2249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>checked:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2296,10 +2296,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#TriStateCheckbox(androidx.compose.ui.state.ToggleableState,kotlin.Function0,androidx.compose.ui.Modifier,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.material.CheckboxColors)">TriStateCheckbox</a></code></td>
               <td>
@@ -2349,10 +2349,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>progress:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -2385,10 +2385,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>color:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.primary</code></td>
               <td>
@@ -2415,10 +2415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>color:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.onSurface.copy(alpha = DividerAlpha)</code></td>
               <td>
@@ -2491,10 +2491,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>expanded:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2561,10 +2561,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2633,10 +2633,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>text:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> () <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2714,10 +2714,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2778,10 +2778,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>imageVector:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/vector/ImageVector.html">ImageVector</a></code></td>
               <td>
@@ -2818,10 +2818,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bitmap:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/ImageBitmap.html">ImageBitmap</a></code></td>
               <td>
@@ -2858,10 +2858,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>painter:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/painter/Painter.html">Painter</a></code></td>
               <td>
@@ -2907,10 +2907,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -2967,10 +2967,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>checked:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3023,10 +3023,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3088,10 +3088,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#Tab(kotlin.Boolean,kotlin.Function0,androidx.compose.ui.Modifier,kotlin.Boolean,kotlin.Function0,kotlin.Function0,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">Tab</a></code></td>
               <td></td>
@@ -3139,10 +3139,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>progress:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -3175,10 +3175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>color:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a> = MaterialTheme.colors.primary</code></td>
               <td>
@@ -3476,10 +3476,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -3578,10 +3578,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>colors:&nbsp;<a href="/reference/kotlin/androidx/compose/material/Colors.html">Colors</a> = MaterialTheme.colors</code></td>
               <td>
@@ -3661,10 +3661,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>sheetContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -3770,10 +3770,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>drawerContent:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> @<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/foundation/layout/ColumnScope.html">ColumnScope</a>.() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -3841,10 +3841,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalStateException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a></code></td>
               <td>
@@ -3873,10 +3873,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -3960,10 +3960,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -4111,10 +4111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/TextFieldValue.html">TextFieldValue</a></code></td>
               <td>
@@ -4241,10 +4241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#LocalTextStyle()">LocalTextStyle</a></code></td>
               <td></td>
@@ -4326,10 +4326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -4564,10 +4564,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -4697,10 +4697,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selectedTabIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -4803,10 +4803,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -4961,10 +4961,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -5114,10 +5114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>snackbarData:&nbsp;<a href="/reference/kotlin/androidx/compose/material/SnackbarData.html">SnackbarData</a></code></td>
               <td>
@@ -5262,10 +5262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>hostState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/SnackbarHostState.html">SnackbarHostState</a></code></td>
               <td>
@@ -5331,10 +5331,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -5423,10 +5423,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -5603,10 +5603,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissState.html">DismissState</a></code></td>
               <td>
@@ -5667,10 +5667,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>checked:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -5724,10 +5724,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -5789,10 +5789,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#LeadingIconTab(kotlin.Boolean,kotlin.Function0,kotlin.Function0,kotlin.Function0,androidx.compose.ui.Modifier,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">LeadingIconTab</a></code></td>
               <td></td>
@@ -5841,10 +5841,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -6141,10 +6141,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selectedTabIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -6216,10 +6216,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>text:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -6339,10 +6339,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>text:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/AnnotatedString.html">AnnotatedString</a></code></td>
               <td>
@@ -6467,10 +6467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onClick:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -6697,10 +6697,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -6849,10 +6849,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/text/input/TextFieldValue.html">TextFieldValue</a></code></td>
               <td>
@@ -7005,10 +7005,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>title:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> () <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -7066,10 +7066,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>modifier:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/Modifier.html">Modifier</a> = Modifier</code></td>
               <td>
@@ -7158,10 +7158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/state/ToggleableState.html">ToggleableState</a></code></td>
               <td>
@@ -7205,10 +7205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#Checkbox(kotlin.Boolean,kotlin.Function1,androidx.compose.ui.Modifier,kotlin.Boolean,androidx.compose.foundation.interaction.MutableInteractionSource,androidx.compose.material.CheckboxColors)">Checkbox</a></code></td>
               <td>
@@ -7229,10 +7229,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -7246,10 +7246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#(androidx.compose.material.Colors).contentColorFor(androidx.compose.ui.graphics.Color)">contentColorFor</a></code></td>
               <td></td>
@@ -7267,10 +7267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#lightColors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">lightColors</a></code></td>
               <td></td>
@@ -7287,10 +7287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#darkColors(androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color,androidx.compose.ui.graphics.Color)">darkColors</a></code></td>
               <td></td>
@@ -7307,10 +7307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BackdropValue.html">BackdropValue</a></code></td>
               <td>
@@ -7347,10 +7347,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomDrawerValue.html">BottomDrawerValue</a></code></td>
               <td>
@@ -7375,10 +7375,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>drawerState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a> = rememberDrawerState(DrawerValue.Closed)</code></td>
               <td>
@@ -7409,10 +7409,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/BottomSheetValue.html">BottomSheetValue</a></code></td>
               <td>
@@ -7443,10 +7443,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DismissValue.html">DismissValue</a> = Default</code></td>
               <td>
@@ -7471,10 +7471,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerValue.html">DrawerValue</a></code></td>
               <td>
@@ -7499,10 +7499,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;<a href="/reference/kotlin/androidx/compose/material/ModalBottomSheetValue.html">ModalBottomSheetValue</a></code></td>
               <td>
@@ -7533,10 +7533,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>drawerState:&nbsp;<a href="/reference/kotlin/androidx/compose/material/DrawerState.html">DrawerState</a> = rememberDrawerState(DrawerValue.Closed)</code></td>
               <td>
@@ -7561,10 +7561,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialValue:&nbsp;T</code></td>
               <td>
@@ -7609,10 +7609,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selected:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -7687,10 +7687,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -7755,10 +7755,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -7887,10 +7887,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ElevationOverlay.html">ElevationOverlay</a></code></td>
               <td></td>
@@ -7907,10 +7907,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/package-summary.html#ProvideTextStyle(androidx.compose.ui.text.TextStyle,kotlin.Function0)">ProvideTextStyle</a></code></td>
               <td></td>
@@ -7928,10 +7928,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html
index 4e24518..4b269e0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html#RippleAlpha(kotlin.Float,kotlin.Float,kotlin.Float,kotlin.Float)">RippleAlpha</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;draggedAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;focusedAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;hoveredAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;pressedAlpha:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html
index 68eae8f..6e1ceaf 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html">RippleAlpha</a></code></td>
             <td>
@@ -45,10 +45,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>contentColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>contentColor:&nbsp;<a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.html
index 631763a..d29b441 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/RippleTheme.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/package-summary.html#rememberRipple(kotlin.Boolean,androidx.compose.ui.unit.Dp,androidx.compose.ui.graphics.Color)">rememberRipple</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html">RippleTheme.Companion</a></code></td>
             <td></td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
             <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/ui/graphics/Color.html">Color</a></code></td>
               <td>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html#defaultRippleColor(androidx.compose.ui.graphics.Color,kotlin.Boolean)">defaultRippleColor</a></code></td>
               <td></td>
@@ -109,10 +109,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html">RippleAlpha</a></code></td>
               <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleTheme.Companion.html#defaultRippleAlpha(androidx.compose.ui.graphics.Color,kotlin.Boolean)">defaultRippleAlpha</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/package-summary.html
index c3054fd..2b33eed 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/material/ripple/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleTheme.html">RippleTheme</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/material/ripple/RippleAlpha.html">RippleAlpha</a></code></td>
             <td>
@@ -35,7 +35,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/foundation/Indication.html">Indication</a></code></td>
             <td>
@@ -49,7 +49,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="/reference/kotlin/androidx/compose/material/ripple/RippleTheme.html">RippleTheme</a>&gt;</code></td>
             <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bounded:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a> = true</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AbstractApplier.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AbstractApplier.html
index 57b04a4..49919a9 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AbstractApplier.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AbstractApplier.html
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a></code></td>
             <td></td>
@@ -117,10 +117,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/AbstractApplier.html#AbstractApplier(kotlin.Any)">AbstractApplier</a>(root:&nbsp;T)</code></div>
@@ -133,10 +133,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -165,10 +165,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -195,10 +195,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open T</code></td>
             <td>
@@ -219,15 +219,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/Applier.html">androidx.compose.runtime.Applier</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Applier.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Applier.html
index 0a42d59..167be43 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Applier.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Applier.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/AbstractApplier.html">AbstractApplier</a></code></td>
                 <td>
@@ -108,10 +108,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/AbstractApplier.html">AbstractApplier</a></code></td>
             <td></td>
@@ -136,10 +136,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -210,10 +210,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>N</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AtomicReference.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AtomicReference.html
index 857267f..cc0dfdc 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AtomicReference.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/AtomicReference.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;V&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/AtomicReference.html#AtomicReference(kotlin.Any)">AtomicReference</a>(value:&nbsp;V)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/BroadcastFrameClock.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/BroadcastFrameClock.html
index 79e4350..3e2e3aa 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/BroadcastFrameClock.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/BroadcastFrameClock.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/BroadcastFrameClock.html#BroadcastFrameClock(kotlin.Function0)">BroadcastFrameClock</a>(onNewAwaiters:&nbsp;(() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)?)</code></div>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -82,15 +82,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -106,7 +106,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open R</code></td>
                       <td>
@@ -137,15 +137,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html">androidx.compose.runtime.MonotonicFrameClock</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;*&gt;</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CheckResult.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CheckResult.html
index b49df81..8df6629 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CheckResult.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CheckResult.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/CheckResult.html#CheckResult(kotlin.String)">CheckResult</a>(suggest:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composable.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composable.html
index 1216629..cf57721 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composable.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/Composable.html#Composable()">Composable</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html
index eaae31f..fbc7934 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html#ComposeCompilerApi()">ComposeCompilerApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.Companion.html
index 38f392a..740b1e1 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.html
index 93e2521..4edba19 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composer.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Composer.Companion.html">Composer.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html">ComposeCompilerApi</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -336,10 +336,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a>&lt;*&gt;</code></td>
             <td>
@@ -410,10 +410,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline @<a href="/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html">ComposeCompilerApi</a> T</code></td>
             <td>
@@ -434,10 +434,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;V</code></td>
               <td>
@@ -469,10 +469,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -486,10 +486,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -510,10 +510,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -527,10 +527,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -551,10 +551,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-char/index.html">Char</a></code></td>
               <td>
@@ -568,10 +568,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -592,10 +592,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte/index.html">Byte</a></code></td>
               <td>
@@ -609,10 +609,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -633,10 +633,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-short/index.html">Short</a></code></td>
               <td>
@@ -650,10 +650,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -674,10 +674,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -691,10 +691,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -715,10 +715,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a></code></td>
               <td>
@@ -732,10 +732,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -756,10 +756,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -773,10 +773,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -797,10 +797,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-double/index.html">Double</a></code></td>
               <td>
@@ -814,10 +814,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -844,10 +844,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a>&lt;T&gt;</code></td>
               <td>
@@ -867,10 +867,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -902,10 +902,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Composer.html#startDefaults()">startDefaults</a></code></td>
               <td></td>
@@ -923,10 +923,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Composer.html#startMovableGroup(kotlin.Int,kotlin.Any)">startMovableGroup</a></code></td>
               <td></td>
@@ -950,10 +950,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Composer.html#startProviders(kotlin.Array)">startProviders</a></code></td>
               <td></td>
@@ -971,10 +971,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Composer.html#startRestartGroup(kotlin.Int)">startRestartGroup</a></code></td>
               <td></td>
@@ -1004,10 +1004,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>left:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1027,10 +1027,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></code></td>
               <td>
@@ -1050,10 +1050,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>effect:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -1079,10 +1079,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1096,10 +1096,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#(androidx.compose.runtime.Composer).cache(kotlin.Boolean,kotlin.Function0)">cache</a></code></td>
               <td></td>
@@ -1142,10 +1142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1179,10 +1179,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1208,10 +1208,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>values:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/ProvidedValue.html">ProvidedValue</a>&lt;*&gt;&gt;</code></td>
               <td>
@@ -1231,10 +1231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1254,10 +1254,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1271,10 +1271,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Composer.html">Composer</a></code></td>
               <td>
@@ -1294,10 +1294,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composition.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composition.html
index ea7ac1b..3e1bd61 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Composition.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ControlledComposition.html">ControlledComposition</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>content:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> () <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalStateException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a></code></td>
               <td>
@@ -137,10 +137,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/RecomposeScope.html">RecomposeScope</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionContext.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionContext.html
index 160a718..1697f8d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionContext.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionContext.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Recomposer.html">Recomposer</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#rememberCompositionContext()">rememberCompositionContext</a></code></td>
             <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionLocal.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionLocal.html
index 0729a77..dce5cc0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionLocal.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/CompositionLocal.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a></code></td>
                 <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html#CompositionLocal(kotlin.Function0)">CompositionLocal</a>(defaultFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T)</code></div>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ControlledComposition.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ControlledComposition.html
index 0656cd5..82cee95 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ControlledComposition.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ControlledComposition.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ControlledComposition.html">ControlledComposition</a></code></td>
             <td></td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -114,10 +114,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -139,15 +139,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/Composition.html">androidx.compose.runtime.Composition</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -174,15 +174,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/Composition.html">androidx.compose.runtime.Composition</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -219,10 +219,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>content:&nbsp;@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> () <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -256,10 +256,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -278,10 +278,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>values:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -300,10 +300,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisallowComposableCalls.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisallowComposableCalls.html
index ac64082..5dc493d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisallowComposableCalls.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisallowComposableCalls.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/DisallowComposableCalls.html#DisallowComposableCalls()">DisallowComposableCalls</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectResult.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectResult.html
index b54020b..1feb46e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectResult.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectResult.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectScope.html
index e7fda03..0ea8e1a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/DisposableEffectScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/DisposableEffectScope.html#DisposableEffectScope()">DisposableEffectScope</a>()</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="/reference/kotlin/androidx/compose/runtime/DisposableEffectResult.html">DisposableEffectResult</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExperimentalComposeApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExperimentalComposeApi.html
index 75a60af..456213a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExperimentalComposeApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExperimentalComposeApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/ExperimentalComposeApi.html#ExperimentalComposeApi()">ExperimentalComposeApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExplicitGroupsComposable.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExplicitGroupsComposable.html
index c26984d..4732162 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExplicitGroupsComposable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ExplicitGroupsComposable.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/ExplicitGroupsComposable.html#ExplicitGroupsComposable()">ExplicitGroupsComposable</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Immutable.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Immutable.html
index b097785..9aad6bb 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Immutable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Immutable.html
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/StableMarker.html">StableMarker</a></code></td>
             <td></td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/Immutable.html#Immutable()">Immutable</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/InternalComposeApi.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/InternalComposeApi.html
index bb51c97..f8cb0b5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/InternalComposeApi.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/InternalComposeApi.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/InternalComposeApi.html#InternalComposeApi()">InternalComposeApi</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html
index 793db16..c0f7675 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/BroadcastFrameClock.html">BroadcastFrameClock</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.Key.html">MonotonicFrameClock.Key</a></code></td>
             <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend R</code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;*&gt;</code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend&nbsp;inline R</code></td>
             <td>
@@ -108,15 +108,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -132,7 +132,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open R</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MutableState.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MutableState.html
index 3fbb774..08ce4a8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MutableState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/MutableState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProduceStateScope.html">ProduceStateScope</a></code></td>
                 <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a></code></td>
             <td></td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>operator T</code></td>
             <td>
@@ -82,10 +82,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -99,10 +99,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NoLiveLiterals.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NoLiveLiterals.html
index e352d5e..cb65487 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NoLiveLiterals.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NoLiveLiterals.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/NoLiveLiterals.html#NoLiveLiterals()">NoLiveLiterals</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NonRestartableComposable.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NonRestartableComposable.html
index 4c65d67..2b41d43 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NonRestartableComposable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/NonRestartableComposable.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/NonRestartableComposable.html#NonRestartableComposable()">NonRestartableComposable</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/PausableMonotonicFrameClock.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/PausableMonotonicFrameClock.html
index b08bdde..a3df304 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/PausableMonotonicFrameClock.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/PausableMonotonicFrameClock.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/PausableMonotonicFrameClock.html#PausableMonotonicFrameClock(androidx.compose.runtime.MonotonicFrameClock)">PausableMonotonicFrameClock</a>(frameClock:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a>)</code></div>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -66,10 +66,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -84,15 +84,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">kotlin.coroutines.CoroutineContext</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -108,7 +108,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-element/index.html">kotlin.coroutines.CoroutineContext.Element</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open R</code></td>
                       <td>
@@ -139,15 +139,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html">androidx.compose.runtime.MonotonicFrameClock</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/-key/index.html">CoroutineContext.Key</a>&lt;*&gt;</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProduceStateScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProduceStateScope.html
index e0a4aad..128772d 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProduceStateScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProduceStateScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-nothing/index.html">Nothing</a></code></td>
             <td>
@@ -34,15 +34,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>operator T</code></td>
                       <td>
@@ -67,15 +67,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">kotlinx.coroutines.CoroutineScope</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a></code></td>
                       <td>
@@ -91,7 +91,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>T</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html
index 5893fa3..38cc675 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#compositionLocalOf(androidx.compose.runtime.SnapshotMutationPolicy,kotlin.Function0)">compositionLocalOf</a></code></td>
             <td></td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>infix <a href="/reference/kotlin/androidx/compose/runtime/ProvidedValue.html">ProvidedValue</a>&lt;T&gt;</code></td>
             <td>
@@ -86,15 +86,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">androidx.compose.runtime.CompositionLocal</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>T</code></td>
                       <td>
@@ -119,10 +119,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidedValue.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidedValue.html
index f0f6aa2..0d08260 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidedValue.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ProvidedValue.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ReadOnlyComposable.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ReadOnlyComposable.html
index c84738c..56fe8b2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ReadOnlyComposable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ReadOnlyComposable.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/ReadOnlyComposable.html#ReadOnlyComposable()">ReadOnlyComposable</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposeScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposeScope.html
index 3163bc8..a3d47d4 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposeScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposeScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.Companion.html
index cd8e8af..78e0805 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.Companion.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-state-flow/index.html">StateFlow</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html">RecomposerInfo</a>&gt;&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.State.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.State.html
index e05000b..58eb21f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.State.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.State.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Recomposer.State.html#Idle">Idle</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.html
index d2f1d38..1e205af 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Recomposer.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Recomposer.State.html">Recomposer.State</a></code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-state-flow/index.html">StateFlow</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html">RecomposerInfo</a>&gt;&gt;</code></td>
             <td>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/Recomposer.html#Recomposer(kotlin.coroutines.CoroutineContext)">Recomposer</a>(effectCoroutineContext:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a>)</code></div>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html">RecomposerInfo</a></code></td>
             <td>
@@ -145,10 +145,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html
index 7f72c10..f6728e6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RecomposerInfo.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RememberObserver.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RememberObserver.html
index c85ccbf..6f36130 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RememberObserver.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/RememberObserver.html
@@ -28,10 +28,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ScopeUpdateScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ScopeUpdateScope.html
index 76039d8..90410ed 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ScopeUpdateScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/ScopeUpdateScope.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SkippableUpdater.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SkippableUpdater.html
index 0e22207..495379e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SkippableUpdater.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SkippableUpdater.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/SkippableUpdater.html#SkippableUpdater(androidx.compose.runtime.Composer)">SkippableUpdater</a>(composer:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/Composer.html">Composer</a>)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SnapshotMutationPolicy.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SnapshotMutationPolicy.html
index cc2a002..5f31874 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SnapshotMutationPolicy.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/SnapshotMutationPolicy.html
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Stable.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Stable.html
index 8e211c9..90bb4e9 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Stable.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Stable.html
@@ -29,10 +29,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Immutable.html">Immutable</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/Stable.html#Stable()">Stable</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/StableMarker.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/StableMarker.html
index 346615d..a4da8da 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/StableMarker.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/StableMarker.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Immutable.html">Immutable</a></code></td>
             <td></td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/StableMarker.html#StableMarker()">StableMarker</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/State.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/State.html
index bc399fb..017cb8f 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/State.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/State.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/core/AnimationState.html">AnimationState</a></code></td>
                 <td>
@@ -39,7 +39,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProduceStateScope.html">ProduceStateScope</a></code></td>
                 <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/MutableState.html">MutableState</a></code></td>
             <td></td>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline&nbsp;operator T</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/TestOnly.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/TestOnly.html
index 1ac28a5..8ca6f80 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/TestOnly.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/TestOnly.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/TestOnly.html#TestOnly()">TestOnly</a>()</code></div>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Updater.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Updater.html
index 176dc46..a8d97aa 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Updater.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/Updater.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#ComposeNode(kotlin.Function0,kotlin.Function1)">ComposeNode</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/Updater.html#Updater(androidx.compose.runtime.Composer)">Updater</a>(composer:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/Composer.html">Composer</a>)</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -112,10 +112,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html#reconcile(kotlin.Function1)">reconcile</a></code></td>
               <td></td>
@@ -140,10 +140,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html#update(kotlin.Int,kotlin.Function2)">update</a></code></td>
               <td></td>
@@ -161,10 +161,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html#update(kotlin.Int,kotlin.Function2)">update</a></code></td>
               <td></td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html#set(kotlin.Int,kotlin.Function2)">set</a></code></td>
               <td></td>
@@ -203,10 +203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html#set(kotlin.Int,kotlin.Function2)">set</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html
index 0f3a7b1..e51b1a2 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -433,10 +433,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.ranges/-int-range/index.html">IntRange</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/package-summary.html
index 9496c1b..0939bb5 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/collection/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html">MutableVector</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline <a href="/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html">MutableVector</a>&lt;T&gt;</code></td>
             <td>
@@ -63,10 +63,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/collection/MutableVector.html#ensureCapacity(kotlin.Int)">ensureCapacity</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/livedata/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/livedata/package-summary.html
index 5ad1cb9..5346eb9 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/livedata/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/livedata/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;T?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/package-summary.html
index 35f6d89..93358d6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a></code></td>
             <td>
@@ -98,7 +98,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/AbstractApplier.html">AbstractApplier</a></code></td>
             <td>
@@ -173,7 +173,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/CheckResult.html">CheckResult</a></code></td>
             <td></td>
@@ -254,7 +254,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Recomposer.State.html">Recomposer.State</a></code></td>
             <td>
@@ -267,7 +267,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline @<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -658,7 +658,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline @<a href="/reference/kotlin/androidx/compose/runtime/ComposeCompilerApi.html">ComposeCompilerApi</a> T</code></td>
             <td>
@@ -721,7 +721,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a></code></td>
             <td>
@@ -763,7 +763,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/MonotonicFrameClock.html">MonotonicFrameClock</a></code></td>
             <td>
@@ -865,10 +865,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -888,10 +888,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -991,10 +991,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -1020,10 +1020,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -1123,10 +1123,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -1158,10 +1158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -1265,10 +1265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>applier:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a>&lt;*&gt;</code></td>
               <td>
@@ -1288,10 +1288,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a></code></td>
               <td></td>
@@ -1331,10 +1331,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -1435,10 +1435,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>applier:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a>&lt;*&gt;</code></td>
               <td>
@@ -1458,10 +1458,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Applier.html">Applier</a></code></td>
               <td></td>
@@ -1791,10 +1791,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -1814,10 +1814,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -1917,10 +1917,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -1946,10 +1946,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -2049,10 +2049,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>noinline&nbsp;factory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -2084,10 +2084,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/Updater.html">Updater</a></code></td>
               <td></td>
@@ -2116,10 +2116,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -2152,10 +2152,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>policy:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/SnapshotMutationPolicy.html">SnapshotMutationPolicy</a>&lt;T&gt; = structuralEqualityPolicy()</code></td>
               <td>
@@ -2175,10 +2175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -2221,10 +2221,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>calculation:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -2287,10 +2287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>vararg&nbsp;keys:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -2348,10 +2348,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -2380,10 +2380,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -2459,10 +2459,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -2491,10 +2491,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
@@ -2592,10 +2592,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;T</code></td>
               <td>
@@ -2615,10 +2615,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a></code></td>
               <td></td>
@@ -2996,10 +2996,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>defaultFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> T</code></td>
               <td>
@@ -3013,10 +3013,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/CompositionLocal.html">CompositionLocal</a></code></td>
               <td></td>
@@ -3077,10 +3077,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>context:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a> = EmptyCoroutineContext</code></td>
               <td>
@@ -3105,10 +3105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>context:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.coroutines/-coroutine-context/index.html">CoroutineContext</a> = EmptyCoroutineContext</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava2/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava2/package-summary.html
index 250d378..c5bfaec 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava2/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava2/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;R&gt;</code></td>
             <td>
@@ -65,10 +65,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
@@ -125,10 +125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
@@ -155,10 +155,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava3/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava3/package-summary.html
index 60146b5..cfc28ad 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava3/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/rxjava3/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a>&lt;R&gt;</code></td>
             <td>
@@ -65,10 +65,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
@@ -95,10 +95,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
@@ -125,10 +125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
@@ -155,10 +155,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initial:&nbsp;R</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder.html
index 54418fb..e0e2620 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder.html
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/compose/runtime/Composable.html">Composable</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -93,10 +93,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html
index 21470d3..5edc53b 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.html
index f8a2289..21913fd 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html">SaveableStateRegistry.Entry</a></code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -77,10 +77,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>value:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a></code></td>
               <td>
@@ -99,10 +99,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.Entry.html">SaveableStateRegistry.Entry</a></code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/Saver.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/Saver.html
index e2fc15c..a83c4e8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/Saver.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/Saver.html
@@ -29,10 +29,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>Original?</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaverScope.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaverScope.html
index b6a7725..cebde80 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaverScope.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/SaverScope.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/package-summary.html
index fe32774..01321d3 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/saveable/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateHolder.html">SaveableStateHolder</a></code></td>
             <td>
@@ -46,7 +46,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.html">SaveableStateRegistry</a></code></td>
             <td>
@@ -109,7 +109,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/saveable/SaveableStateRegistry.html">SaveableStateRegistry</a>?&gt;</code></td>
             <td>
@@ -129,10 +129,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>restoredValues:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">Map</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;&gt;?</code></td>
               <td>
@@ -170,10 +170,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>save:&nbsp;@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> <a href="/reference/kotlin/androidx/compose/runtime/saveable/SaverScope.html">SaverScope</a>.(value) <span style="white-space: nowrap;">-&gt;</span> Saveable?</code></td>
               <td>
@@ -199,10 +199,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/saveable/Saver.html">Saver</a></code></td>
               <td></td>
@@ -277,10 +277,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>vararg&nbsp;inputs:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>vararg&nbsp;inputs:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/MutableSnapshot.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/MutableSnapshot.html
index 6ab2b62..3b32e3a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/MutableSnapshot.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/MutableSnapshot.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeMutableSnapshot(kotlin.Function1,kotlin.Function1)">takeMutableSnapshot</a></code></td>
             <td></td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.html">SnapshotApplyResult</a></code></td>
             <td>
@@ -110,10 +110,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -135,15 +135,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">androidx.compose.runtime.snapshots.Snapshot</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>inline T</code></td>
                       <td>
@@ -163,15 +163,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">androidx.compose.runtime.snapshots.Snapshot</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html
index 8078dfc..bcbf5a6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html
index f699a27..1a03661 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline T</code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -148,10 +148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>readObserver:&nbsp;((<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)? = null</code></td>
               <td>
@@ -180,10 +180,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
               <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
               <td>
@@ -243,10 +243,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>readObserver:&nbsp;((<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)? = null</code></td>
               <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeSnapshot(kotlin.Function1)">takeSnapshot</a></code></td>
               <td></td>
@@ -301,10 +301,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>readObserver:&nbsp;((<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)? = null</code></td>
               <td>
@@ -318,10 +318,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html
index 125b348..b950a45 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/MutableSnapshot.html">MutableSnapshot</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeSnapshot(kotlin.Function1)">takeSnapshot</a></code></td>
             <td></td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>inline T</code></td>
             <td>
@@ -147,10 +147,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion properties</h3></th>
+            <th colspan="100%"><h3>Public companion properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
@@ -165,10 +165,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html#Snapshot(kotlin.Int,androidx.compose.runtime.snapshots.SnapshotIdSet)">Snapshot</a>(id:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;invalid:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotIdSet.html">SnapshotIdSet</a>)</code></div>
@@ -181,10 +181,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -220,10 +220,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -257,10 +257,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -287,10 +287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>readObserver:&nbsp;((<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)? = null</code></td>
               <td>
@@ -319,10 +319,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
               <td>
@@ -344,10 +344,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
               <td>
@@ -382,10 +382,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>readObserver:&nbsp;((<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)? = null</code></td>
               <td>
@@ -407,10 +407,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.Companion.html#takeSnapshot(kotlin.Function1)">takeSnapshot</a></code></td>
               <td></td>
@@ -440,10 +440,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>readObserver:&nbsp;((<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)? = null</code></td>
               <td>
@@ -457,10 +457,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
               <td></td>
@@ -507,10 +507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateOf(kotlin.Any,androidx.compose.runtime.SnapshotMutationPolicy)">mutableStateOf</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html
index d174f61..3ba8d37 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html#SnapshotApplyConflictException(androidx.compose.runtime.snapshots.Snapshot)">SnapshotApplyConflictException</a>(snapshot:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a>)</code></div>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
@@ -73,15 +73,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -154,15 +154,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">kotlin.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>?</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html
index d71c4f6..541703c 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html#Failure(androidx.compose.runtime.snapshots.Snapshot)">Failure</a>(snapshot:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a>)</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/Snapshot.html">Snapshot</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html
index 71bc041..73bddd6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.html
index 36fa5b7..599bb65 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html">SnapshotApplyResult.Failure</a></code></td>
                 <td></td>
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Failure.html">SnapshotApplyResult.Failure</a></code></td>
             <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.html#SnapshotApplyResult()">SnapshotApplyResult</a>()</code></div>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -89,10 +89,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotMutableState.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotMutableState.html
index 59bce0d..459b505 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotMutableState.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotMutableState.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/State.html">State</a></code></td>
             <td></td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/SnapshotMutationPolicy.html">SnapshotMutationPolicy</a>&lt;T&gt;</code></td>
             <td>
@@ -57,15 +57,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>operator T</code></td>
                       <td>
@@ -90,15 +90,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/MutableState.html">androidx.compose.runtime.MutableState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>T</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateList.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateList.html
index 902bc73..7f85839 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateList.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateList.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateListOf()">mutableStateListOf</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateList.html#SnapshotStateList()">SnapshotStateList</a>()</code></div>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -192,10 +192,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
             <td>
@@ -216,15 +216,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">kotlin.collections.Collection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://developer.android.com/reference/java/util/stream/Stream.html">Stream</a>&lt;T&gt;</code></td>
                       <td>
@@ -253,7 +253,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">kotlin.collections.Iterable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -269,7 +269,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">kotlin.collections.List</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://developer.android.com/reference/java/util/Spliterator.html">Spliterator</a>&lt;T&gt;</code></td>
                       <td>
@@ -285,7 +285,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html">kotlin.collections.MutableCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -301,7 +301,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">kotlin.collections.MutableList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -323,7 +323,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateObject.html">androidx.compose.runtime.snapshots.StateObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a>?</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateMap.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateMap.html
index 7f509ad..2d1c9c9 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateMap.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateMap.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/package-summary.html#mutableStateMapOf()">mutableStateMapOf</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;K&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;V&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateMap.html#SnapshotStateMap()">SnapshotStateMap</a>()</code></div>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -114,10 +114,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-set/index.html">MutableSet</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-map/-mutable-entry/index.html">MutableMap.MutableEntry</a>&lt;K,&nbsp;V&gt;&gt;</code></td>
             <td>
@@ -156,15 +156,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/index.html">kotlin.collections.Map</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -186,7 +186,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-map/index.html">kotlin.collections.MutableMap</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open V?</code></td>
                       <td>
@@ -250,7 +250,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateObject.html">androidx.compose.runtime.snapshots.StateObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a>?</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateObserver.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateObserver.html
index b2718b3..705ca2a 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateObserver.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateObserver.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateObserver.html#SnapshotStateObserver(kotlin.Function1)">SnapshotStateObserver</a>(onChangedExecutor:&nbsp;(callback:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>)</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateObject.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateObject.html
index db9a5ad..d87cd23 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateObject.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateObject.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotStateList.html">SnapshotStateList</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a>?</code></td>
             <td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
             <td>
@@ -89,10 +89,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>previous:&nbsp;<a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a></code></td>
               <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html">StateRecord</a>?</code></td>
               <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html
index 470b471..f72c71e 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/StateRecord.html#StateRecord()">StateRecord</a>()</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/package-summary.html
index d3aa711..e382708 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/snapshots/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/ObserverHandle.html">ObserverHandle</a></code></td>
             <td>
@@ -34,7 +34,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/MutableSnapshot.html">MutableSnapshot</a></code></td>
             <td>
@@ -85,7 +85,7 @@
     <h2>Exceptions</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyConflictException.html">SnapshotApplyConflictException</a></code></td>
             <td>
@@ -98,7 +98,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/SnapshotApplyResult.Success.html">SnapshotApplyResult.Success</a></code></td>
             <td></td>
@@ -109,7 +109,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/snapshots/package-summary.html#readable(androidx.compose.runtime.snapshots.StateRecord,kotlin.Int,androidx.compose.runtime.snapshots.SnapshotIdSet)">readable</a></code></td>
               <td></td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html
index fe2f18d..b787ac0 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html">CompositionGroup</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">Iterable</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html">CompositionGroup</a>&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html
index f6e6996..3de58e8 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">Iterable</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -56,15 +56,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html">androidx.compose.runtime.tooling.CompositionData</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">Iterable</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/tooling/CompositionGroup.html">CompositionGroup</a>&gt;</code></td>
                       <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/package-summary.html b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/package-summary.html
index 69ad8e2..bfe34f6 100644
--- a/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/package-summary.html
+++ b/testData/compose/docs/reference/kotlin/androidx/compose/runtime/tooling/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html">CompositionData</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/runtime/ProvidableCompositionLocal.html">ProvidableCompositionLocal</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-set/index.html">MutableSet</a>&lt;<a href="/reference/kotlin/androidx/compose/runtime/tooling/CompositionData.html">CompositionData</a>&gt;?&gt;</code></td>
             <td>
diff --git a/testData/compose/docs/reference/kotlin/androidx/packages.html b/testData/compose/docs/reference/kotlin/androidx/packages.html
index 05638f2..144bea7 100644
--- a/testData/compose/docs/reference/kotlin/androidx/packages.html
+++ b/testData/compose/docs/reference/kotlin/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/compose/animation/package-summary.html">androidx.compose.animation</a></code></td>
             <td></td>
diff --git a/testData/fragment/docs/reference/androidx/classes.html b/testData/fragment/docs/reference/androidx/classes.html
index 67027a5..3e0b7d8 100644
--- a/testData/fragment/docs/reference/androidx/classes.html
+++ b/testData/fragment/docs/reference/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_D">D</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/DialogFragment.html">DialogFragment</a></code></td>
             <td>
@@ -24,7 +24,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
             <td>
@@ -169,7 +169,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/ListFragment.html">ListFragment</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/DialogFragment.html b/testData/fragment/docs/reference/androidx/fragment/app/DialogFragment.html
index b8e2462..81a28ed 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/DialogFragment.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/DialogFragment.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/DialogFragment.html#DialogFragment()">DialogFragment</a>()</code></div>
@@ -96,10 +96,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -279,15 +279,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/content/ComponentCallbacks.html">android.content.ComponentCallbacks</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -309,7 +309,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/fragment/app/Fragment.html">androidx.fragment.app.Fragment</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -1157,7 +1157,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/lifecycle/HasDefaultViewModelProviderFactory.html">androidx.lifecycle.HasDefaultViewModelProviderFactory</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/lifecycle/ViewModelProvider.Factory.html">ViewModelProvider.Factory</a></code></td>
                       <td>
@@ -1173,7 +1173,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/lifecycle/LifecycleOwner.html">androidx.lifecycle.LifecycleOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/lifecycle/Lifecycle.html">Lifecycle</a></code></td>
                       <td>
@@ -1189,7 +1189,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/savedstate/SavedStateRegistryOwner.html">androidx.savedstate.SavedStateRegistryOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/savedstate/SavedStateRegistry.html">SavedStateRegistry</a></code></td>
                       <td>
@@ -1205,7 +1205,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.OnCreateContextMenuListener.html">android.view.View.OnCreateContextMenuListener</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -1221,7 +1221,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/lifecycle/ViewModelStoreOwner.html">androidx.lifecycle.ViewModelStoreOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/lifecycle/ViewModelStore.html">ViewModelStore</a></code></td>
                       <td>
@@ -1280,10 +1280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/DialogFragment.html#DialogFragment()">DialogFragment</a></code></td>
               <td></td>
@@ -1315,10 +1315,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/DialogFragment.html#requireDialog()">requireDialog</a></code></td>
               <td></td>
@@ -1360,10 +1360,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -1384,10 +1384,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -1401,10 +1401,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/app/Dialog.html">Dialog</a></code></td>
               <td>
@@ -1444,10 +1444,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;outState</code></td>
               <td>
@@ -1476,10 +1476,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -1498,10 +1498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -1515,10 +1515,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/DialogFragment.html#getDialog()">getDialog</a></code></td>
               <td></td>
@@ -1535,10 +1535,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;cancelable</code></td>
               <td>
@@ -1559,10 +1559,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;showsDialog</code></td>
               <td>
@@ -1581,10 +1581,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;style</code></td>
               <td>
@@ -1609,10 +1609,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;manager</code></td>
               <td>
@@ -1637,10 +1637,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a>&nbsp;transaction</code></td>
               <td>
@@ -1660,10 +1660,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -1682,10 +1682,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;manager</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/Fragment.InstantiationException.html b/testData/fragment/docs/reference/androidx/fragment/app/Fragment.InstantiationException.html
index e8be6f5..445c3d9 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/Fragment.InstantiationException.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/Fragment.InstantiationException.html
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/Fragment.InstantiationException.html#InstantiationException(java.lang.String,java.lang.Exception)">InstantiationException</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;msg,&nbsp;@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Exception.html">Exception</a>&nbsp;cause)</code></div>
@@ -63,15 +63,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/lang/Throwable.html">java.lang.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>synchronized&nbsp;final void</code></td>
                       <td>
@@ -150,15 +150,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/lang/Throwable.html">java.lang.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
                       <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/Fragment.SavedState.html b/testData/fragment/docs/reference/androidx/fragment/app/Fragment.SavedState.html
index dad7921..b3afdec 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/Fragment.SavedState.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/Fragment.SavedState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/os/Parcelable.Creator.html">Parcelable.Creator</a>&lt;<a href="/reference/androidx/fragment/app/Fragment.SavedState.html">Fragment.SavedState</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/Fragment.SavedState.html#SavedState()">SavedState</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -72,15 +72,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/os/Parcelable.html">android.os.Parcelable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -99,15 +99,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited Constants</h3></th>
+            <th colspan="100%"><h3>Inherited Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/os/Parcelable.html">android.os.Parcelable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static&nbsp;final int</code></td>
                       <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/Fragment.html b/testData/fragment/docs/reference/androidx/fragment/app/Fragment.html
index 96cec5d..7246288 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/Fragment.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/Fragment.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/fragment/app/DialogFragment.html">DialogFragment</a></code></td>
                 <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.InstantiationException.html">Fragment.InstantiationException</a></code></td>
             <td>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/Fragment.html#Fragment()">Fragment</a>()</code></div>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -1022,10 +1022,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#Fragment()">Fragment</a></code></td>
               <td></td>
@@ -1047,10 +1047,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;prefix</code></td>
               <td>
@@ -1092,10 +1092,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#requireActivity()">requireActivity</a></code></td>
               <td></td>
@@ -1112,10 +1112,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1134,10 +1134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1166,10 +1166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#requireContext()">requireContext</a></code></td>
               <td></td>
@@ -1191,10 +1191,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1213,10 +1213,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1239,10 +1239,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getParentFragmentManager()">getParentFragmentManager</a></code></td>
               <td></td>
@@ -1259,10 +1259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#requireHost()">requireHost</a></code></td>
               <td></td>
@@ -1285,10 +1285,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/LayoutInflater.html">LayoutInflater</a></code></td>
               <td>
@@ -1326,10 +1326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -1348,10 +1348,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1378,10 +1378,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1395,10 +1395,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#setRetainInstance(boolean)">setRetainInstance</a></code></td>
               <td></td>
@@ -1415,10 +1415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1441,10 +1441,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1463,10 +1463,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -1485,10 +1485,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;resId</code></td>
               <td>
@@ -1507,10 +1507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;resId</code></td>
               <td>
@@ -1556,10 +1556,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;resId</code></td>
               <td>
@@ -1580,10 +1580,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1597,10 +1597,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#setUserVisibleHint(boolean)">setUserVisibleHint</a></code></td>
               <td></td>
@@ -1617,10 +1617,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -1652,10 +1652,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LifecycleOwner.html">LifecycleOwner</a></code></td>
               <td>
@@ -1669,10 +1669,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -1693,10 +1693,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;<a href="/reference/androidx/lifecycle/LifecycleOwner.html">LifecycleOwner</a>&gt;</code></td>
               <td>
@@ -1716,10 +1716,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/ViewModelStore.html">ViewModelStore</a></code></td>
               <td>
@@ -1733,10 +1733,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -1771,10 +1771,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/content/Context.html">Context</a>&nbsp;context</code></td>
               <td>
@@ -1800,10 +1800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -1817,10 +1817,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.InstantiationException.html">androidx.fragment.app.Fragment.InstantiationException</a>&nbsp;androidx.fragment.app.Fragment.InstantiationException</code></td>
               <td>
@@ -1869,10 +1869,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -1899,10 +1899,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -1924,10 +1924,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;requestCode</code></td>
               <td>
@@ -1975,10 +1975,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;childFragment</code></td>
               <td>
@@ -2003,10 +2003,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/MenuItem.html">MenuItem</a>&nbsp;item</code></td>
               <td>
@@ -2020,10 +2020,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -2044,10 +2044,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -2066,10 +2066,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;transit</code></td>
               <td>
@@ -2100,10 +2100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;transit</code></td>
               <td>
@@ -2142,10 +2142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/Menu.html">Menu</a>&nbsp;menu</code></td>
               <td>
@@ -2159,10 +2159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#setHasOptionsMenu(boolean)">setHasOptionsMenu</a></code></td>
               <td></td>
@@ -2190,10 +2190,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/LayoutInflater.html">LayoutInflater</a>&nbsp;inflater</code></td>
               <td>
@@ -2219,10 +2219,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -2261,10 +2261,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -2278,10 +2278,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/LayoutInflater.html">LayoutInflater</a></code></td>
               <td>
@@ -2300,10 +2300,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;hidden</code></td>
               <td>
@@ -2417,10 +2417,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/content/Context.html">Context</a>&nbsp;context</code></td>
               <td>
@@ -2463,10 +2463,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isInMultiWindowMode</code></td>
               <td>
@@ -2486,10 +2486,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/MenuItem.html">MenuItem</a>&nbsp;item</code></td>
               <td>
@@ -2503,10 +2503,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -2520,10 +2520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onCreateOptionsMenu(android.view.Menu,android.view.MenuInflater)">onCreateOptionsMenu</a></code></td>
               <td></td>
@@ -2540,10 +2540,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/Menu.html">Menu</a>&nbsp;menu</code></td>
               <td>
@@ -2567,10 +2567,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isInPictureInPictureMode</code></td>
               <td>
@@ -2589,10 +2589,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/Menu.html">Menu</a>&nbsp;menu</code></td>
               <td>
@@ -2606,10 +2606,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#setHasOptionsMenu(boolean)">setHasOptionsMenu</a></code></td>
               <td></td>
@@ -2630,10 +2630,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isPrimaryNavigationFragment</code></td>
               <td>
@@ -2656,10 +2656,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;requestCode</code></td>
               <td>
@@ -2685,10 +2685,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#requestPermissions(java.lang.String[],int)">requestPermissions</a></code></td>
               <td></td>
@@ -2711,10 +2711,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;outState</code></td>
               <td>
@@ -2743,10 +2743,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a>&nbsp;view</code></td>
               <td>
@@ -2771,10 +2771,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;savedInstanceState</code></td>
               <td>
@@ -2797,10 +2797,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Activity.html#postponeEnterTransition()">postponeEnterTransition</a></code></td>
               <td></td>
@@ -2825,10 +2825,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long&nbsp;duration</code></td>
               <td>
@@ -2848,10 +2848,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Activity.html#postponeEnterTransition()">postponeEnterTransition</a></code></td>
               <td></td>
@@ -2881,10 +2881,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a>&nbsp;view</code></td>
               <td>
@@ -2898,10 +2898,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#unregisterForContextMenu(android.view.View)">unregisterForContextMenu</a></code></td>
               <td></td>
@@ -2928,10 +2928,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> String[]&nbsp;permissions</code></td>
               <td>
@@ -2951,10 +2951,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onRequestPermissionsResult(int,java.lang.String[],int[])">onRequestPermissionsResult</a></code></td>
               <td></td>
@@ -2975,10 +2975,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -2992,10 +2992,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getActivity()">getActivity</a></code></td>
               <td></td>
@@ -3012,10 +3012,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -3029,10 +3029,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getArguments()">getArguments</a></code></td>
               <td></td>
@@ -3049,10 +3049,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -3066,10 +3066,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getContext()">getContext</a></code></td>
               <td></td>
@@ -3090,10 +3090,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -3107,10 +3107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getParentFragmentManager()">getParentFragmentManager</a></code></td>
               <td></td>
@@ -3127,10 +3127,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -3144,10 +3144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getHost()">getHost</a></code></td>
               <td></td>
@@ -3164,10 +3164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -3181,10 +3181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getParentFragment()">getParentFragment</a></code></td>
               <td></td>
@@ -3201,10 +3201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -3218,10 +3218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getView()">getView</a></code></td>
               <td></td>
@@ -3238,10 +3238,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;allow</code></td>
               <td>
@@ -3260,10 +3260,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;allow</code></td>
               <td>
@@ -3288,10 +3288,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>&nbsp;callback</code></td>
               <td>
@@ -3310,10 +3310,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;transition</code></td>
               <td>
@@ -3332,10 +3332,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>&nbsp;callback</code></td>
               <td>
@@ -3354,10 +3354,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;transition</code></td>
               <td>
@@ -3376,10 +3376,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;hasMenu</code></td>
               <td>
@@ -3398,10 +3398,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.SavedState.html">Fragment.SavedState</a>&nbsp;state</code></td>
               <td>
@@ -3420,10 +3420,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;menuVisible</code></td>
               <td>
@@ -3442,10 +3442,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;transition</code></td>
               <td>
@@ -3472,10 +3472,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;retain</code></td>
               <td>
@@ -3489,10 +3489,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#getRetainInstance()">getRetainInstance</a></code></td>
               <td></td>
@@ -3509,10 +3509,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;transition</code></td>
               <td>
@@ -3531,10 +3531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;transition</code></td>
               <td>
@@ -3553,10 +3553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&nbsp;transition</code></td>
               <td>
@@ -3579,10 +3579,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -3612,10 +3612,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isVisibleToUser</code></td>
               <td>
@@ -3634,10 +3634,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;permission</code></td>
               <td>
@@ -3651,10 +3651,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -3668,10 +3668,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/Context.html#checkSelfPermission(java.lang.String)">checkSelfPermission</a></code></td>
               <td></td>
@@ -3709,10 +3709,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/Intent.html">Intent</a>&nbsp;intent</code></td>
               <td>
@@ -3740,10 +3740,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/Intent.html">Intent</a>&nbsp;intent</code></td>
               <td>
@@ -3777,10 +3777,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/IntentSender.html">IntentSender</a>&nbsp;intent</code></td>
               <td>
@@ -3830,10 +3830,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/IntentSender.SendIntentException.html">android.content.IntentSender.SendIntentException</a>&nbsp;android.content.IntentSender.SendIntentException</code></td>
               <td></td>
@@ -3850,10 +3850,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Activity.html#startPostponedEnterTransition()">startPostponedEnterTransition</a></code></td>
               <td></td>
@@ -3874,10 +3874,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a>&nbsp;view</code></td>
               <td>
@@ -3891,10 +3891,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#registerForContextMenu(android.view.View)">registerForContextMenu</a></code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentActivity.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentActivity.html
index d9432f7..043dfe3 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentActivity.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentActivity.html
@@ -22,10 +22,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentActivity.html#FragmentActivity()">FragmentActivity</a>()</code></div>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -245,10 +245,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -336,10 +336,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentActivity.html#FragmentActivity()">FragmentActivity</a></code></td>
               <td></td>
@@ -357,10 +357,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;prefix</code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isInMultiWindowMode</code></td>
               <td>
@@ -473,10 +473,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;isInPictureInPictureMode</code></td>
               <td>
@@ -509,10 +509,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>&nbsp;callback</code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>&nbsp;listener</code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -587,10 +587,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -630,10 +630,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -689,10 +689,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/IntentSender.SendIntentException.html">android.content.IntentSender.SendIntentException</a>&nbsp;android.content.IntentSender.SendIntentException</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainer.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainer.html
index 6e8b811..7a50da2 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainer.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainer.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentHostCallback.html">FragmentHostCallback</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentContainer.html#FragmentContainer()">FragmentContainer</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainerView.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainerView.html
index d5bf673..851e7a6 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainerView.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentContainerView.html
@@ -77,10 +77,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentContainerView.html#FragmentContainerView(android.content.Context)">FragmentContainerView</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/content/Context.html">Context</a>&nbsp;context)</code></div>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -185,10 +185,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -221,15 +221,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/FrameLayout.html">android.widget.FrameLayout</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -312,7 +312,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/org/robolectric/internal/bytecode/ShadowedObject.html">org.robolectric.internal.bytecode.ShadowedObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
                       <td>
@@ -328,7 +328,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -4494,7 +4494,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -5786,15 +5786,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static int</code></td>
                       <td>
@@ -7159,7 +7159,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static int</code></td>
                       <td>
@@ -7343,10 +7343,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/animation/LayoutTransition.html">LayoutTransition</a>&nbsp;transition</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentController.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentController.html
index 98f89cd..5e48299 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentController.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentController.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentController.html#FragmentController()">FragmentController</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -387,10 +387,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td></td>
@@ -408,10 +408,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onConfigurationChanged(android.content.res.Configuration)">onConfigurationChanged</a></code></td>
               <td></td>
@@ -429,10 +429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onContextItemSelected(android.view.MenuItem)">onContextItemSelected</a></code></td>
               <td></td>
@@ -467,10 +467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td></td>
@@ -488,10 +488,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -505,10 +505,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onCreateOptionsMenu(android.view.Menu,android.view.MenuInflater)">onCreateOptionsMenu</a></code></td>
               <td></td>
@@ -528,10 +528,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onDestroy()">onDestroy</a></code></td>
               <td></td>
@@ -549,10 +549,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onDestroyView()">onDestroyView</a></code></td>
               <td></td>
@@ -570,10 +570,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onLowMemory()">onLowMemory</a></code></td>
               <td></td>
@@ -591,10 +591,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onMultiWindowModeChanged(boolean)">onMultiWindowModeChanged</a></code></td>
               <td></td>
@@ -612,10 +612,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -629,10 +629,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onOptionsItemSelected(android.view.MenuItem)">onOptionsItemSelected</a></code></td>
               <td></td>
@@ -650,10 +650,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onOptionsMenuClosed(android.view.Menu)">onOptionsMenuClosed</a></code></td>
               <td></td>
@@ -671,10 +671,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onPause()">onPause</a></code></td>
               <td></td>
@@ -692,10 +692,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onPictureInPictureModeChanged(boolean)">onPictureInPictureModeChanged</a></code></td>
               <td></td>
@@ -713,10 +713,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -730,10 +730,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onPrepareOptionsMenu(android.view.Menu)">onPrepareOptionsMenu</a></code></td>
               <td></td>
@@ -758,10 +758,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onResume()">onResume</a></code></td>
               <td></td>
@@ -779,10 +779,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onStart()">onStart</a></code></td>
               <td></td>
@@ -800,10 +800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#onStop()">onStop</a></code></td>
               <td></td>
@@ -847,10 +847,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;retain</code></td>
               <td>
@@ -878,10 +878,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -923,10 +923,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/loader/app/LoaderManager.html#getInstance">LoaderManager</a></code></td>
               <td></td>
@@ -948,10 +948,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a>&nbsp;parent</code></td>
               <td>
@@ -983,10 +983,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -1032,10 +1032,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentController.html#retainLoaderNonConfig()">retainLoaderNonConfig</a></code></td>
               <td></td>
@@ -1052,10 +1052,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/os/Parcelable.html">Parcelable</a>&nbsp;state</code></td>
               <td>
@@ -1069,10 +1069,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentController.html#saveAllState()">saveAllState</a></code></td>
               <td></td>
@@ -1113,10 +1113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentController.html#restoreSaveState(android.os.Parcelable)">restoreSaveState</a></code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentFactory.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentFactory.html
index 08faa7b..550f2da 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentFactory.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentFactory.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.html#setFragmentFactory(androidx.fragment.app.FragmentFactory)">setFragmentFactory</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentFactory.html#FragmentFactory()">FragmentFactory</a>()</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
             <td>
@@ -82,10 +82,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/ClassLoader.html">ClassLoader</a>&nbsp;classLoader</code></td>
               <td>
@@ -105,10 +105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.InstantiationException.html">androidx.fragment.app.Fragment.InstantiationException</a>&nbsp;androidx.fragment.app.Fragment.InstantiationException</code></td>
               <td>
@@ -144,10 +144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/ClassLoader.html">ClassLoader</a>&nbsp;classLoader</code></td>
               <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Class.html">Class</a>&lt;<a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&gt;</code></td>
               <td>
@@ -184,10 +184,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.InstantiationException.html">androidx.fragment.app.Fragment.InstantiationException</a>&nbsp;androidx.fragment.app.Fragment.InstantiationException</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentHostCallback.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentHostCallback.html
index d2d945b..4b1f8fb 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentHostCallback.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentHostCallback.html
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;E&gt;</code></td>
             <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentHostCallback.html#FragmentHostCallback(android.content.Context,android.os.Handler,int)">FragmentHostCallback</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/content/Context.html">Context</a>&nbsp;context,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/os/Handler.html">Handler</a>&nbsp;handler,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;windowAnimations<br>)</code></div>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -188,15 +188,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/fragment/app/FragmentContainer.html">androidx.fragment.app.FragmentContainer</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
                       <td>
@@ -228,10 +228,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;prefix</code></td>
               <td>
@@ -329,10 +329,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/IntentSender.SendIntentException.html">android.content.IntentSender.SendIntentException</a>&nbsp;android.content.IntentSender.SendIntentException</code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.BackStackEntry.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.BackStackEntry.html
index 1913eed..40f4f2f 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.BackStackEntry.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.BackStackEntry.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/CharSequence.html">CharSequence</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html
index b9b494d..d079a66 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html#FragmentLifecycleCallbacks()">FragmentLifecycleCallbacks</a>()</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -190,10 +190,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -224,10 +224,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -286,10 +286,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -314,10 +314,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -376,10 +376,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -410,10 +410,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -472,10 +472,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -500,10 +500,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -528,10 +528,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -568,10 +568,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html
index d7dc28a..ef33cce 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.html
index 458fa8d..d23b87f 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManager.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.BackStackEntry.html">FragmentManager.BackStackEntry</a></code></td>
             <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentManager.html#FragmentManager()">FragmentManager</a>()</code></div>
@@ -80,10 +80,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -360,10 +360,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentOnAttachListener.html">FragmentOnAttachListener</a>&nbsp;listener</code></td>
               <td>
@@ -393,10 +393,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -437,10 +437,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;prefix</code></td>
               <td>
@@ -480,10 +480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/util/Log.html#isLoggable(java.lang.String,int)">isLoggable</a></code></td>
               <td></td>
@@ -507,10 +507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enabled</code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a>&nbsp;view</code></td>
               <td>
@@ -570,10 +570,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> F</code></td>
               <td>
@@ -587,10 +587,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -609,10 +609,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -632,10 +632,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;tag</code></td>
               <td>
@@ -649,10 +649,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -681,10 +681,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;bundle</code></td>
               <td>
@@ -704,10 +704,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -727,10 +727,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentFactory.html">FragmentFactory</a></code></td>
               <td>
@@ -750,10 +750,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;<a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&gt;</code></td>
               <td>
@@ -773,10 +773,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -800,10 +800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -827,10 +827,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;name</code></td>
               <td>
@@ -855,10 +855,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;id</code></td>
               <td>
@@ -883,10 +883,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -905,10 +905,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -927,10 +927,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -949,10 +949,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>&nbsp;bundle</code></td>
               <td>
@@ -983,10 +983,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html">FragmentManager.FragmentLifecycleCallbacks</a>&nbsp;cb</code></td>
               <td>
@@ -1011,10 +1011,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentOnAttachListener.html">FragmentOnAttachListener</a>&nbsp;listener</code></td>
               <td>
@@ -1043,10 +1043,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -1060,10 +1060,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.SavedState.html">Fragment.SavedState</a></code></td>
               <td>
@@ -1083,10 +1083,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentFactory.html">FragmentFactory</a>&nbsp;fragmentFactory</code></td>
               <td>
@@ -1100,10 +1100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.html#getFragmentFactory()">getFragmentFactory</a></code></td>
               <td></td>
@@ -1120,10 +1120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -1148,10 +1148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -1186,10 +1186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html">FragmentManager.FragmentLifecycleCallbacks</a>&nbsp;cb</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManagerNonConfig.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManagerNonConfig.html
index 53809d3..74e234e 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentManagerNonConfig.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentManagerNonConfig.html
@@ -20,10 +20,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/FragmentManagerNonConfig.html#FragmentManagerNonConfig()">FragmentManagerNonConfig</a>()</code></div>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentOnAttachListener.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentOnAttachListener.html
index 52157d3..dae2402 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentOnAttachListener.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentOnAttachListener.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.html#addFragmentOnAttachListener(androidx.fragment.app.FragmentOnAttachListener)">addFragmentOnAttachListener</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fragmentManager</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentPagerAdapter.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentPagerAdapter.html
index 88ba8a1..5910ff6 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentPagerAdapter.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentPagerAdapter.html
@@ -196,10 +196,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -223,10 +223,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/androidx/fragment/app/FragmentPagerAdapter.html#FragmentPagerAdapter(androidx.fragment.app.FragmentManager)">FragmentPagerAdapter</a></del></span>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm)</code></div>
@@ -248,10 +248,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -326,10 +326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentPagerAdapter.html#FragmentPagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentPagerAdapter</a></code></td>
               <td></td>
@@ -349,10 +349,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentPagerAdapter.html#FragmentPagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentPagerAdapter</a></code></td>
               <td></td>
@@ -374,10 +374,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -396,10 +396,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -439,10 +439,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;position</code></td>
               <td>
@@ -456,10 +456,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>long</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultListener.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultListener.html
index f400def..9fe5b95 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultListener.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultListener.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentResultOwner.html#setFragmentResultListener(java.lang.String,androidx.lifecycle.LifecycleOwner,androidx.fragment.app.FragmentResultListener)">setFragmentResultListener</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultOwner.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultOwner.html
index 46e8287..cfed1d9 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultOwner.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentResultOwner.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;requestKey</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentStateManagerControl.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentStateManagerControl.html
index e24b9d0..611724d 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentStateManagerControl.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentStateManagerControl.html
@@ -14,10 +14,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.html#enableNewStateManager(boolean)">enableNewStateManager</a></code></td>
             <td></td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentStatePagerAdapter.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentStatePagerAdapter.html
index b4eb470..00349f4 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentStatePagerAdapter.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentStatePagerAdapter.html
@@ -196,10 +196,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -223,10 +223,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/androidx/fragment/app/FragmentStatePagerAdapter.html#FragmentStatePagerAdapter(androidx.fragment.app.FragmentManager)">FragmentStatePagerAdapter</a></del></span>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm)</code></div>
@@ -248,10 +248,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -319,10 +319,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentStatePagerAdapter.html#FragmentStatePagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentStatePagerAdapter</a></code></td>
               <td></td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentStatePagerAdapter.html#FragmentStatePagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentStatePagerAdapter</a></code></td>
               <td></td>
@@ -367,10 +367,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentManager.html">FragmentManager</a>&nbsp;fm</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentTabHost.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentTabHost.html
index 18f4f5c..ef68983 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentTabHost.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentTabHost.html
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/androidx/fragment/app/FragmentTabHost.html#FragmentTabHost(android.content.Context)">FragmentTabHost</a></del></span>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/content/Context.html">Context</a>&nbsp;context)</code></div>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -150,10 +150,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -197,15 +197,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/FrameLayout.html">android.widget.FrameLayout</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -282,7 +282,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/org/robolectric/internal/bytecode/ShadowedObject.html">org.robolectric.internal.bytecode.ShadowedObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
                       <td>
@@ -298,7 +298,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/TabHost.html">android.widget.TabHost</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -404,7 +404,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -4558,7 +4558,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -5898,15 +5898,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/TabHost.html">android.widget.TabHost</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -5928,7 +5928,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static int</code></td>
                       <td>
@@ -7293,7 +7293,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static int</code></td>
                       <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/FragmentTransaction.html b/testData/fragment/docs/reference/androidx/fragment/app/FragmentTransaction.html
index c10a093..d036916 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/FragmentTransaction.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/FragmentTransaction.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/androidx/fragment/app/FragmentTransaction.html#FragmentTransaction()">FragmentTransaction</a></del></span>()</code></div>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
             <td>
@@ -445,10 +445,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;containerViewId</code></td>
               <td>
@@ -480,10 +480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -502,10 +502,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;containerViewId</code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/View.html">View</a>&nbsp;sharedElement</code></td>
               <td>
@@ -576,10 +576,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.html#setSharedElementReturnTransition(java.lang.Object)">setSharedElementReturnTransition</a></code></td>
               <td></td>
@@ -601,10 +601,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;name</code></td>
               <td>
@@ -623,10 +623,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -640,10 +640,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -663,10 +663,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -703,10 +703,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -720,10 +720,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -747,10 +747,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -764,10 +764,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -786,10 +786,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -807,10 +807,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -829,10 +829,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -846,10 +846,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -878,10 +878,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;containerViewId</code></td>
               <td>
@@ -913,10 +913,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -935,10 +935,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;containerViewId</code></td>
               <td>
@@ -964,10 +964,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -988,10 +988,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Runnable.html">Runnable</a>&nbsp;runnable</code></td>
               <td>
@@ -1005,10 +1005,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1022,10 +1022,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -1054,10 +1054,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;res</code></td>
               <td>
@@ -1087,10 +1087,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;res</code></td>
               <td>
@@ -1125,10 +1125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;enter</code></td>
               <td>
@@ -1161,10 +1161,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;enter</code></td>
               <td>
@@ -1203,10 +1203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -1226,10 +1226,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1250,10 +1250,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -1267,10 +1267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1293,10 +1293,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;reorderingAllowed</code></td>
               <td>
@@ -1315,10 +1315,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;transition</code></td>
               <td>
@@ -1345,10 +1345,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/Fragment.html">Fragment</a>&nbsp;fragment</code></td>
               <td>
@@ -1362,10 +1362,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/ListFragment.html b/testData/fragment/docs/reference/androidx/fragment/app/ListFragment.html
index 6b3081e..f926d7c 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/ListFragment.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/ListFragment.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/fragment/app/ListFragment.html#ListFragment()">ListFragment</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/Nullable.html">Nullable</a> <a href="https://developer.android.com/reference/android/widget/ListAdapter.html">ListAdapter</a></code></td>
             <td>
@@ -159,15 +159,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/content/ComponentCallbacks.html">android.content.ComponentCallbacks</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -189,7 +189,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/fragment/app/Fragment.html">androidx.fragment.app.Fragment</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -1079,7 +1079,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/lifecycle/HasDefaultViewModelProviderFactory.html">androidx.lifecycle.HasDefaultViewModelProviderFactory</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/lifecycle/ViewModelProvider.Factory.html">ViewModelProvider.Factory</a></code></td>
                       <td>
@@ -1095,7 +1095,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/lifecycle/LifecycleOwner.html">androidx.lifecycle.LifecycleOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/lifecycle/Lifecycle.html">Lifecycle</a></code></td>
                       <td>
@@ -1111,7 +1111,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/savedstate/SavedStateRegistryOwner.html">androidx.savedstate.SavedStateRegistryOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/savedstate/SavedStateRegistry.html">SavedStateRegistry</a></code></td>
                       <td>
@@ -1127,7 +1127,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.OnCreateContextMenuListener.html">android.view.View.OnCreateContextMenuListener</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -1143,7 +1143,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/lifecycle/ViewModelStoreOwner.html">androidx.lifecycle.ViewModelStoreOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/androidx/lifecycle/ViewModelStore.html">ViewModelStore</a></code></td>
                       <td>
@@ -1172,10 +1172,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/ListFragment.html#requireListAdapter()">requireListAdapter</a></code></td>
               <td></td>
@@ -1218,10 +1218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/widget/ListView.html">ListView</a>&nbsp;l</code></td>
               <td>
@@ -1263,10 +1263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a>&nbsp;java.lang.IllegalStateException</code></td>
               <td>
@@ -1280,10 +1280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/fragment/app/ListFragment.html#getListAdapter()">getListAdapter</a></code></td>
               <td></td>
@@ -1311,10 +1311,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;shown</code></td>
               <td>
@@ -1338,10 +1338,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;position</code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/androidx/fragment/app/package-summary.html b/testData/fragment/docs/reference/androidx/fragment/app/package-summary.html
index 0ee414f..e5d0100 100644
--- a/testData/fragment/docs/reference/androidx/fragment/app/package-summary.html
+++ b/testData/fragment/docs/reference/androidx/fragment/app/package-summary.html
@@ -76,7 +76,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentStateManagerControl.html">FragmentStateManagerControl</a></code></td>
             <td></td>
@@ -87,7 +87,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/FragmentManager.BackStackEntry.html">FragmentManager.BackStackEntry</a></code></td>
             <td>
@@ -124,7 +124,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/DialogFragment.html">DialogFragment</a></code></td>
             <td>
@@ -241,7 +241,7 @@
     <h2>Exceptions</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/Fragment.InstantiationException.html">Fragment.InstantiationException</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/androidx/packages.html b/testData/fragment/docs/reference/androidx/packages.html
index 2ace159..bc45f27 100644
--- a/testData/fragment/docs/reference/androidx/packages.html
+++ b/testData/fragment/docs/reference/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/fragment/app/package-summary.html">androidx.fragment.app</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/classes.html b/testData/fragment/docs/reference/kotlin/androidx/classes.html
index 89a36b9..20ffa37 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/classes.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_D">D</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html">DialogFragment</a></code></td>
             <td>
@@ -24,7 +24,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
             <td>
@@ -169,7 +169,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/ListFragment.html">ListFragment</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/DialogFragment.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/DialogFragment.html
index 62b7352..4c78402 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/DialogFragment.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/DialogFragment.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -73,10 +73,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html#DialogFragment()">DialogFragment</a>()</code></div>
@@ -96,10 +96,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -279,15 +279,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/content/ComponentCallbacks.html">android.content.ComponentCallbacks</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -309,7 +309,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/fragment/app/Fragment.html">androidx.fragment.app.Fragment</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -1157,7 +1157,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/lifecycle/HasDefaultViewModelProviderFactory.html">androidx.lifecycle.HasDefaultViewModelProviderFactory</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/lifecycle/ViewModelProvider.Factory.html">ViewModelProvider.Factory</a>!</code></td>
                       <td>
@@ -1173,7 +1173,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/lifecycle/LifecycleOwner.html">androidx.lifecycle.LifecycleOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/lifecycle/Lifecycle.html">Lifecycle</a>!</code></td>
                       <td>
@@ -1189,7 +1189,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/savedstate/SavedStateRegistryOwner.html">androidx.savedstate.SavedStateRegistryOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/savedstate/SavedStateRegistry.html">SavedStateRegistry</a>!</code></td>
                       <td>
@@ -1205,7 +1205,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.OnCreateContextMenuListener.html">android.view.View.OnCreateContextMenuListener</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -1221,7 +1221,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/lifecycle/ViewModelStoreOwner.html">androidx.lifecycle.ViewModelStoreOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/lifecycle/ViewModelStore.html">ViewModelStore</a>!</code></td>
                       <td>
@@ -1280,10 +1280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html#DialogFragment()">DialogFragment</a></code></td>
               <td></td>
@@ -1315,10 +1315,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html#requireDialog()">requireDialog</a></code></td>
               <td></td>
@@ -1360,10 +1360,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -1384,10 +1384,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -1401,10 +1401,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Dialog.html">Dialog</a></code></td>
               <td>
@@ -1444,10 +1444,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>outState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a></code></td>
               <td>
@@ -1476,10 +1476,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -1498,10 +1498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -1515,10 +1515,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html#getDialog()">getDialog</a></code></td>
               <td></td>
@@ -1535,10 +1535,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>cancelable:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1559,10 +1559,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>showsDialog:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1581,10 +1581,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>style:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1609,10 +1609,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>manager:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -1637,10 +1637,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transaction:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1660,10 +1660,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1682,10 +1682,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>manager:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html
index 46cecd1..eb1537e 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html#InstantiationException(java.lang.String,java.lang.Exception)">InstantiationException</a>(msg:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>,&nbsp;cause:&nbsp;<a href="https://developer.android.com/reference/java/lang/Exception.html">Exception</a>?)</code></div>
@@ -63,15 +63,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/lang/Throwable.html">java.lang.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>synchronized <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -150,15 +150,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/lang/Throwable.html">java.lang.Throwable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>!</code></td>
                       <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html
index 4ea8f23..3cd3e47 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://developer.android.com/reference/android/os/Parcelable.Creator.html">Parcelable.Creator</a>&lt;<a href="/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html">Fragment.SavedState</a>!&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html#SavedState()">SavedState</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -72,15 +72,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/os/Parcelable.html">android.os.Parcelable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -99,15 +99,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited Constants</h3></th>
+            <th colspan="100%"><h3>Inherited Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/os/Parcelable.html">android.os.Parcelable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.html
index 345e457..ecc043b 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/Fragment.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html">DialogFragment</a></code></td>
                 <td>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html">Fragment.InstantiationException</a></code></td>
             <td>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#Fragment()">Fragment</a>()</code></div>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -1022,10 +1022,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#Fragment()">Fragment</a></code></td>
               <td></td>
@@ -1047,10 +1047,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>prefix:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -1092,10 +1092,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#requireActivity()">requireActivity</a></code></td>
               <td></td>
@@ -1112,10 +1112,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1134,10 +1134,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1166,10 +1166,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#requireContext()">requireContext</a></code></td>
               <td></td>
@@ -1191,10 +1191,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1213,10 +1213,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1239,10 +1239,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getParentFragmentManager()">getParentFragmentManager</a></code></td>
               <td></td>
@@ -1259,10 +1259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#requireHost()">requireHost</a></code></td>
               <td></td>
@@ -1285,10 +1285,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/LayoutInflater.html">LayoutInflater</a></code></td>
               <td>
@@ -1326,10 +1326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -1348,10 +1348,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1378,10 +1378,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1395,10 +1395,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#setRetainInstance(boolean)">setRetainInstance</a></code></td>
               <td></td>
@@ -1415,10 +1415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1441,10 +1441,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1463,10 +1463,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1485,10 +1485,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>resId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1507,10 +1507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>resId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1556,10 +1556,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>resId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1580,10 +1580,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1597,10 +1597,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#setUserVisibleHint(boolean)">setUserVisibleHint</a></code></td>
               <td></td>
@@ -1617,10 +1617,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/View.html">View</a>?</code></td>
               <td>
@@ -1652,10 +1652,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/LifecycleOwner.html">LifecycleOwner</a></code></td>
               <td>
@@ -1669,10 +1669,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -1693,10 +1693,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/LiveData.html">LiveData</a>&lt;<a href="/reference/kotlin/androidx/lifecycle/LifecycleOwner.html">LifecycleOwner</a>!&gt;</code></td>
               <td>
@@ -1716,10 +1716,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/ViewModelStore.html">ViewModelStore</a></code></td>
               <td>
@@ -1733,10 +1733,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -1771,10 +1771,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>context:&nbsp;<a href="https://developer.android.com/reference/android/content/Context.html">Context</a></code></td>
               <td>
@@ -1800,10 +1800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -1817,10 +1817,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>androidx.fragment.app.Fragment.InstantiationException:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html">androidx.fragment.app.Fragment.InstantiationException</a></code></td>
               <td>
@@ -1869,10 +1869,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1899,10 +1899,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -1924,10 +1924,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestCode:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1975,10 +1975,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>childFragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -2003,10 +2003,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>item:&nbsp;<a href="https://developer.android.com/reference/android/view/MenuItem.html">MenuItem</a></code></td>
               <td>
@@ -2020,10 +2020,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2044,10 +2044,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -2066,10 +2066,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transit:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -2100,10 +2100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transit:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -2142,10 +2142,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>menu:&nbsp;<a href="https://developer.android.com/reference/android/view/Menu.html">Menu</a></code></td>
               <td>
@@ -2159,10 +2159,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#setHasOptionsMenu(boolean)">setHasOptionsMenu</a></code></td>
               <td></td>
@@ -2190,10 +2190,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>inflater:&nbsp;<a href="https://developer.android.com/reference/android/view/LayoutInflater.html">LayoutInflater</a></code></td>
               <td>
@@ -2219,10 +2219,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/View.html">View</a>?</code></td>
               <td>
@@ -2261,10 +2261,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -2278,10 +2278,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/LayoutInflater.html">LayoutInflater</a></code></td>
               <td>
@@ -2300,10 +2300,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>hidden:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2417,10 +2417,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>context:&nbsp;<a href="https://developer.android.com/reference/android/content/Context.html">Context</a></code></td>
               <td>
@@ -2463,10 +2463,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isInMultiWindowMode:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2486,10 +2486,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>item:&nbsp;<a href="https://developer.android.com/reference/android/view/MenuItem.html">MenuItem</a></code></td>
               <td>
@@ -2503,10 +2503,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2520,10 +2520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onCreateOptionsMenu(android.view.Menu,android.view.MenuInflater)">onCreateOptionsMenu</a></code></td>
               <td></td>
@@ -2540,10 +2540,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>menu:&nbsp;<a href="https://developer.android.com/reference/android/view/Menu.html">Menu</a></code></td>
               <td>
@@ -2567,10 +2567,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isInPictureInPictureMode:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2589,10 +2589,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>menu:&nbsp;<a href="https://developer.android.com/reference/android/view/Menu.html">Menu</a></code></td>
               <td>
@@ -2606,10 +2606,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#setHasOptionsMenu(boolean)">setHasOptionsMenu</a></code></td>
               <td></td>
@@ -2630,10 +2630,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isPrimaryNavigationFragment:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -2656,10 +2656,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestCode:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -2685,10 +2685,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#requestPermissions(java.lang.String[],int)">requestPermissions</a></code></td>
               <td></td>
@@ -2711,10 +2711,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>outState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a></code></td>
               <td>
@@ -2743,10 +2743,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>view:&nbsp;<a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -2771,10 +2771,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>savedInstanceState:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a>?</code></td>
               <td>
@@ -2797,10 +2797,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Activity.html#postponeEnterTransition()">postponeEnterTransition</a></code></td>
               <td></td>
@@ -2825,10 +2825,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>duration:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
@@ -2848,10 +2848,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Activity.html#postponeEnterTransition()">postponeEnterTransition</a></code></td>
               <td></td>
@@ -2881,10 +2881,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>view:&nbsp;<a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -2898,10 +2898,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#unregisterForContextMenu(android.view.View)">unregisterForContextMenu</a></code></td>
               <td></td>
@@ -2928,10 +2928,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>permissions:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!&gt;</code></td>
               <td>
@@ -2951,10 +2951,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onRequestPermissionsResult(int,java.lang.String[],int[])">onRequestPermissionsResult</a></code></td>
               <td></td>
@@ -2975,10 +2975,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -2992,10 +2992,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getActivity()">getActivity</a></code></td>
               <td></td>
@@ -3012,10 +3012,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -3029,10 +3029,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getArguments()">getArguments</a></code></td>
               <td></td>
@@ -3049,10 +3049,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -3066,10 +3066,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getContext()">getContext</a></code></td>
               <td></td>
@@ -3090,10 +3090,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -3107,10 +3107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getParentFragmentManager()">getParentFragmentManager</a></code></td>
               <td></td>
@@ -3127,10 +3127,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -3144,10 +3144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getHost()">getHost</a></code></td>
               <td></td>
@@ -3164,10 +3164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -3181,10 +3181,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getParentFragment()">getParentFragment</a></code></td>
               <td></td>
@@ -3201,10 +3201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -3218,10 +3218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getView()">getView</a></code></td>
               <td></td>
@@ -3238,10 +3238,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>allow:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3260,10 +3260,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>allow:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3288,10 +3288,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;<a href="/reference/kotlin/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>?</code></td>
               <td>
@@ -3310,10 +3310,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -3332,10 +3332,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;<a href="/reference/kotlin/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>?</code></td>
               <td>
@@ -3354,10 +3354,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -3376,10 +3376,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>hasMenu:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3398,10 +3398,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html">Fragment.SavedState</a>?</code></td>
               <td>
@@ -3420,10 +3420,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>menuVisible:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3442,10 +3442,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -3472,10 +3472,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>retain:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3489,10 +3489,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#getRetainInstance()">getRetainInstance</a></code></td>
               <td></td>
@@ -3509,10 +3509,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -3531,10 +3531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -3553,10 +3553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -3579,10 +3579,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>?</code></td>
               <td>
@@ -3612,10 +3612,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isVisibleToUser:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3634,10 +3634,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>permission:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -3651,10 +3651,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -3668,10 +3668,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/content/Context.html#checkSelfPermission(java.lang.String)">checkSelfPermission</a></code></td>
               <td></td>
@@ -3709,10 +3709,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>intent:&nbsp;<a href="https://developer.android.com/reference/android/content/Intent.html">Intent</a>!</code></td>
               <td>
@@ -3740,10 +3740,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>intent:&nbsp;<a href="https://developer.android.com/reference/android/content/Intent.html">Intent</a>!</code></td>
               <td>
@@ -3777,10 +3777,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>intent:&nbsp;<a href="https://developer.android.com/reference/android/content/IntentSender.html">IntentSender</a>!</code></td>
               <td>
@@ -3830,10 +3830,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>android.content.IntentSender.SendIntentException:&nbsp;<a href="https://developer.android.com/reference/android/content/IntentSender.SendIntentException.html">android.content.IntentSender.SendIntentException</a></code></td>
               <td></td>
@@ -3850,10 +3850,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/app/Activity.html#startPostponedEnterTransition()">startPostponedEnterTransition</a></code></td>
               <td></td>
@@ -3874,10 +3874,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>view:&nbsp;<a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -3891,10 +3891,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#registerForContextMenu(android.view.View)">registerForContextMenu</a></code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentActivity.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentActivity.html
index 43287d5..5831374 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentActivity.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentActivity.html
@@ -22,10 +22,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentActivity.html#FragmentActivity()">FragmentActivity</a>()</code></div>
@@ -45,10 +45,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -245,10 +245,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -336,10 +336,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentActivity.html#FragmentActivity()">FragmentActivity</a></code></td>
               <td></td>
@@ -357,10 +357,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>prefix:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isInMultiWindowMode:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -473,10 +473,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>isInPictureInPictureMode:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -509,10 +509,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;<a href="/reference/kotlin/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>?</code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;<a href="/reference/kotlin/androidx/core/app/SharedElementCallback.html">SharedElementCallback</a>?</code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -587,10 +587,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -630,10 +630,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -689,10 +689,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>android.content.IntentSender.SendIntentException:&nbsp;<a href="https://developer.android.com/reference/android/content/IntentSender.SendIntentException.html">android.content.IntentSender.SendIntentException</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainer.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainer.html
index 876a3f2..ed55225 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainer.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainer.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentHostCallback.html">FragmentHostCallback</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentContainer.html#FragmentContainer()">FragmentContainer</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainerView.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainerView.html
index 2aef0a0..c3c7e34 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainerView.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentContainerView.html
@@ -77,10 +77,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentContainerView.html#FragmentContainerView(android.content.Context)">FragmentContainerView</a>(context:&nbsp;<a href="https://developer.android.com/reference/android/content/Context.html">Context</a>)</code></div>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -185,10 +185,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -221,15 +221,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/FrameLayout.html">android.widget.FrameLayout</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -312,7 +312,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/org/robolectric/internal/bytecode/ShadowedObject.html">org.robolectric.internal.bytecode.ShadowedObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>!</code></td>
                       <td>
@@ -328,7 +328,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -4494,7 +4494,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -5786,15 +5786,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>java-static <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -7159,7 +7159,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>java-static <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -7343,10 +7343,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://developer.android.com/reference/android/animation/LayoutTransition.html">LayoutTransition</a>?</code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentController.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentController.html
index 93063db..a1cce42 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentController.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentController.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentController.html#FragmentController()">FragmentController</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -387,10 +387,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td></td>
@@ -408,10 +408,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onConfigurationChanged(android.content.res.Configuration)">onConfigurationChanged</a></code></td>
               <td></td>
@@ -429,10 +429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onContextItemSelected(android.view.MenuItem)">onContextItemSelected</a></code></td>
               <td></td>
@@ -467,10 +467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td></td>
@@ -488,10 +488,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -505,10 +505,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onCreateOptionsMenu(android.view.Menu,android.view.MenuInflater)">onCreateOptionsMenu</a></code></td>
               <td></td>
@@ -528,10 +528,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onDestroy()">onDestroy</a></code></td>
               <td></td>
@@ -549,10 +549,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onDestroyView()">onDestroyView</a></code></td>
               <td></td>
@@ -570,10 +570,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onLowMemory()">onLowMemory</a></code></td>
               <td></td>
@@ -591,10 +591,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onMultiWindowModeChanged(boolean)">onMultiWindowModeChanged</a></code></td>
               <td></td>
@@ -612,10 +612,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -629,10 +629,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onOptionsItemSelected(android.view.MenuItem)">onOptionsItemSelected</a></code></td>
               <td></td>
@@ -650,10 +650,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onOptionsMenuClosed(android.view.Menu)">onOptionsMenuClosed</a></code></td>
               <td></td>
@@ -671,10 +671,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onPause()">onPause</a></code></td>
               <td></td>
@@ -692,10 +692,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onPictureInPictureModeChanged(boolean)">onPictureInPictureModeChanged</a></code></td>
               <td></td>
@@ -713,10 +713,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -730,10 +730,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onPrepareOptionsMenu(android.view.Menu)">onPrepareOptionsMenu</a></code></td>
               <td></td>
@@ -758,10 +758,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onResume()">onResume</a></code></td>
               <td></td>
@@ -779,10 +779,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onStart()">onStart</a></code></td>
               <td></td>
@@ -800,10 +800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#onStop()">onStop</a></code></td>
               <td></td>
@@ -847,10 +847,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>retain:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -878,10 +878,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -923,10 +923,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/loader/app/LoaderManager.html#getInstance">LoaderManager</a></code></td>
               <td></td>
@@ -948,10 +948,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>parent:&nbsp;<a href="https://developer.android.com/reference/android/view/View.html">View</a>?</code></td>
               <td>
@@ -983,10 +983,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/view/View.html">View</a>?</code></td>
               <td>
@@ -1032,10 +1032,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentController.html#retainLoaderNonConfig()">retainLoaderNonConfig</a></code></td>
               <td></td>
@@ -1052,10 +1052,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="https://developer.android.com/reference/android/os/Parcelable.html">Parcelable</a>?</code></td>
               <td>
@@ -1069,10 +1069,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentController.html#saveAllState()">saveAllState</a></code></td>
               <td></td>
@@ -1113,10 +1113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentController.html#restoreSaveState(android.os.Parcelable)">restoreSaveState</a></code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentFactory.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentFactory.html
index 955e394..2cbf31c 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentFactory.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentFactory.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html#setFragmentFactory(androidx.fragment.app.FragmentFactory)">setFragmentFactory</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentFactory.html#FragmentFactory()">FragmentFactory</a>()</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
             <td>
@@ -82,10 +82,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>classLoader:&nbsp;<a href="https://developer.android.com/reference/java/lang/ClassLoader.html">ClassLoader</a></code></td>
               <td>
@@ -105,10 +105,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>androidx.fragment.app.Fragment.InstantiationException:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html">androidx.fragment.app.Fragment.InstantiationException</a></code></td>
               <td>
@@ -144,10 +144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>classLoader:&nbsp;<a href="https://developer.android.com/reference/java/lang/ClassLoader.html">ClassLoader</a></code></td>
               <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Class.html">Class</a>&lt;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>!&gt;</code></td>
               <td>
@@ -184,10 +184,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>androidx.fragment.app.Fragment.InstantiationException:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html">androidx.fragment.app.Fragment.InstantiationException</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentHostCallback.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentHostCallback.html
index e0ce5df..1d883d6 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentHostCallback.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentHostCallback.html
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;E&gt;</code></td>
             <td>
@@ -59,10 +59,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentHostCallback.html#FragmentHostCallback(android.content.Context,android.os.Handler,int)">FragmentHostCallback</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;context:&nbsp;<a href="https://developer.android.com/reference/android/content/Context.html">Context</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;handler:&nbsp;<a href="https://developer.android.com/reference/android/os/Handler.html">Handler</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;windowAnimations:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><br>)</code></div>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -188,15 +188,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/fragment/app/FragmentContainer.html">androidx.fragment.app.FragmentContainer</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
                       <td>
@@ -228,10 +228,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>prefix:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -329,10 +329,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>android.content.IntentSender.SendIntentException:&nbsp;<a href="https://developer.android.com/reference/android/content/IntentSender.SendIntentException.html">android.content.IntentSender.SendIntentException</a></code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.BackStackEntry.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.BackStackEntry.html
index d8cde2e..4ec050e 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.BackStackEntry.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.BackStackEntry.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-char-sequence/index.html">CharSequence</a>?</code></td>
             <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html
index 49a9112..62c08b9 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html#FragmentLifecycleCallbacks()">FragmentLifecycleCallbacks</a>()</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -190,10 +190,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -224,10 +224,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -258,10 +258,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -286,10 +286,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -314,10 +314,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -376,10 +376,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -410,10 +410,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -472,10 +472,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -500,10 +500,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -528,10 +528,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -568,10 +568,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html
index 7d7d487..9daee98 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.OnBackStackChangedListener.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.html
index f17d70e..7a1477c 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManager.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.BackStackEntry.html">FragmentManager.BackStackEntry</a></code></td>
             <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html#FragmentManager()">FragmentManager</a>()</code></div>
@@ -80,10 +80,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -360,10 +360,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentOnAttachListener.html">FragmentOnAttachListener</a></code></td>
               <td>
@@ -393,10 +393,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -437,10 +437,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>prefix:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -480,10 +480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/android/util/Log.html#isLoggable(java.lang.String,int)">isLoggable</a></code></td>
               <td></td>
@@ -507,10 +507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>view:&nbsp;<a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -570,10 +570,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>F</code></td>
               <td>
@@ -587,10 +587,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -609,10 +609,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>?</code></td>
               <td>
@@ -632,10 +632,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>tag:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?</code></td>
               <td>
@@ -649,10 +649,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>?</code></td>
               <td>
@@ -681,10 +681,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bundle:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a></code></td>
               <td>
@@ -704,10 +704,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>?</code></td>
               <td>
@@ -727,10 +727,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentFactory.html">FragmentFactory</a></code></td>
               <td>
@@ -750,10 +750,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">Mutable</a>)<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>!&gt;</code></td>
               <td>
@@ -773,10 +773,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>?</code></td>
               <td>
@@ -800,10 +800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -827,10 +827,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>name:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?</code></td>
               <td>
@@ -855,10 +855,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>id:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -883,10 +883,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -905,10 +905,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -927,10 +927,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -949,10 +949,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bundle:&nbsp;<a href="https://developer.android.com/reference/android/os/Bundle.html">Bundle</a></code></td>
               <td>
@@ -983,10 +983,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>cb:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html">FragmentManager.FragmentLifecycleCallbacks</a></code></td>
               <td>
@@ -1011,10 +1011,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentOnAttachListener.html">FragmentOnAttachListener</a></code></td>
               <td>
@@ -1043,10 +1043,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -1060,10 +1060,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.SavedState.html">Fragment.SavedState</a>?</code></td>
               <td>
@@ -1083,10 +1083,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragmentFactory:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentFactory.html">FragmentFactory</a></code></td>
               <td>
@@ -1100,10 +1100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html#getFragmentFactory()">getFragmentFactory</a></code></td>
               <td></td>
@@ -1120,10 +1120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -1148,10 +1148,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -1186,10 +1186,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>cb:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.FragmentLifecycleCallbacks.html">FragmentManager.FragmentLifecycleCallbacks</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManagerNonConfig.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManagerNonConfig.html
index d7646a9..567d588 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManagerNonConfig.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentManagerNonConfig.html
@@ -20,10 +20,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManagerNonConfig.html#FragmentManagerNonConfig()">FragmentManagerNonConfig</a>()</code></div>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentOnAttachListener.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentOnAttachListener.html
index 8370b95..f256635 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentOnAttachListener.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentOnAttachListener.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html#addFragmentOnAttachListener(androidx.fragment.app.FragmentOnAttachListener)">addFragmentOnAttachListener</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragmentManager:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html
index 43c4779..b009e8d 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html
@@ -196,10 +196,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -223,10 +223,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html#FragmentPagerAdapter(androidx.fragment.app.FragmentManager)">FragmentPagerAdapter</a></del></span>(fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a>)</code></div>
@@ -248,10 +248,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -326,10 +326,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html#FragmentPagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentPagerAdapter</a></code></td>
               <td></td>
@@ -349,10 +349,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentPagerAdapter.html#FragmentPagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentPagerAdapter</a></code></td>
               <td></td>
@@ -374,10 +374,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -396,10 +396,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -439,10 +439,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>position:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -456,10 +456,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html">Long</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultListener.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultListener.html
index 491fb40..dbe279b 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultListener.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultListener.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentResultOwner.html#setFragmentResultListener(java.lang.String,androidx.lifecycle.LifecycleOwner,androidx.fragment.app.FragmentResultListener)">setFragmentResultListener</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -54,10 +54,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultOwner.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultOwner.html
index a68325b..72d90c2 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultOwner.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentResultOwner.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
                 <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -122,10 +122,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>requestKey:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStateManagerControl.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStateManagerControl.html
index 08e0824..608ac3b 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStateManagerControl.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStateManagerControl.html
@@ -14,10 +14,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html#enableNewStateManager(boolean)">enableNewStateManager</a></code></td>
             <td></td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html
index bdd3f09..6c0e140 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html
@@ -196,10 +196,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -223,10 +223,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html#FragmentStatePagerAdapter(androidx.fragment.app.FragmentManager)">FragmentStatePagerAdapter</a></del></span>(fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a>)</code></div>
@@ -248,10 +248,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -319,10 +319,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html#FragmentStatePagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentStatePagerAdapter</a></code></td>
               <td></td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentStatePagerAdapter.html#FragmentStatePagerAdapter(androidx.fragment.app.FragmentManager,int)">FragmentStatePagerAdapter</a></code></td>
               <td></td>
@@ -367,10 +367,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fm:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/FragmentManager.html">FragmentManager</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTabHost.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTabHost.html
index c9a6145..17e3a9a 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTabHost.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTabHost.html
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/kotlin/androidx/fragment/app/FragmentTabHost.html#FragmentTabHost(android.content.Context)">FragmentTabHost</a></del></span>(context:&nbsp;<a href="https://developer.android.com/reference/android/content/Context.html">Context</a>)</code></div>
@@ -85,10 +85,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -150,10 +150,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -197,15 +197,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/FrameLayout.html">android.widget.FrameLayout</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -282,7 +282,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/org/robolectric/internal/bytecode/ShadowedObject.html">org.robolectric.internal.bytecode.ShadowedObject</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>!</code></td>
                       <td>
@@ -298,7 +298,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/TabHost.html">android.widget.TabHost</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -404,7 +404,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -4558,7 +4558,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -5898,15 +5898,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/widget/TabHost.html">android.widget.TabHost</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -5928,7 +5928,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.html">android.view.View</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>java-static <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -7293,7 +7293,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/ViewGroup.html">android.view.ViewGroup</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>java-static <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTransaction.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTransaction.html
index 49055f2..ca4ccd3 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTransaction.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/FragmentTransaction.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><span><del><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html#FragmentTransaction()">FragmentTransaction</a></del></span>()</code></div>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
             <td>
@@ -445,10 +445,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>containerViewId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -480,10 +480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -502,10 +502,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>containerViewId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -531,10 +531,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>sharedElement:&nbsp;<a href="https://developer.android.com/reference/android/view/View.html">View</a></code></td>
               <td>
@@ -576,10 +576,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.html#setSharedElementReturnTransition(java.lang.Object)">setSharedElementReturnTransition</a></code></td>
               <td></td>
@@ -601,10 +601,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>name:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?</code></td>
               <td>
@@ -623,10 +623,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -640,10 +640,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -663,10 +663,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -703,10 +703,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -720,10 +720,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -747,10 +747,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -764,10 +764,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -786,10 +786,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -807,10 +807,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -829,10 +829,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -846,10 +846,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -878,10 +878,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>containerViewId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -913,10 +913,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -935,10 +935,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>containerViewId:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -964,10 +964,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -988,10 +988,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>runnable:&nbsp;<a href="https://developer.android.com/reference/java/lang/Runnable.html">Runnable</a></code></td>
               <td>
@@ -1005,10 +1005,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1022,10 +1022,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -1054,10 +1054,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>res:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1087,10 +1087,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>res:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1125,10 +1125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enter:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1161,10 +1161,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enter:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1203,10 +1203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -1226,10 +1226,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1250,10 +1250,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a>?</code></td>
               <td>
@@ -1267,10 +1267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
@@ -1293,10 +1293,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>reorderingAllowed:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1315,10 +1315,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1345,10 +1345,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fragment:&nbsp;<a href="/reference/kotlin/androidx/fragment/app/Fragment.html">Fragment</a></code></td>
               <td>
@@ -1362,10 +1362,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentTransaction.html">FragmentTransaction</a></code></td>
               <td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/ListFragment.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/ListFragment.html
index 14c2769..fbabb66 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/ListFragment.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/ListFragment.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/fragment/app/ListFragment.html#ListFragment()">ListFragment</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/android/widget/ListAdapter.html">ListAdapter</a>?</code></td>
             <td>
@@ -159,15 +159,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/content/ComponentCallbacks.html">android.content.ComponentCallbacks</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -189,7 +189,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/fragment/app/Fragment.html">androidx.fragment.app.Fragment</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -1079,7 +1079,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/lifecycle/HasDefaultViewModelProviderFactory.html">androidx.lifecycle.HasDefaultViewModelProviderFactory</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/lifecycle/ViewModelProvider.Factory.html">ViewModelProvider.Factory</a>!</code></td>
                       <td>
@@ -1095,7 +1095,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/lifecycle/LifecycleOwner.html">androidx.lifecycle.LifecycleOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/lifecycle/Lifecycle.html">Lifecycle</a>!</code></td>
                       <td>
@@ -1111,7 +1111,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/savedstate/SavedStateRegistryOwner.html">androidx.savedstate.SavedStateRegistryOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/savedstate/SavedStateRegistry.html">SavedStateRegistry</a>!</code></td>
                       <td>
@@ -1127,7 +1127,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/android/view/View.OnCreateContextMenuListener.html">android.view.View.OnCreateContextMenuListener</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -1143,7 +1143,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/lifecycle/ViewModelStoreOwner.html">androidx.lifecycle.ViewModelStoreOwner</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="/reference/kotlin/androidx/lifecycle/ViewModelStore.html">ViewModelStore</a>!</code></td>
                       <td>
@@ -1172,10 +1172,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/ListFragment.html#requireListAdapter()">requireListAdapter</a></code></td>
               <td></td>
@@ -1218,10 +1218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>l:&nbsp;<a href="https://developer.android.com/reference/android/widget/ListView.html">ListView</a></code></td>
               <td>
@@ -1263,10 +1263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>java.lang.IllegalStateException:&nbsp;<a href="https://developer.android.com/reference/java/lang/IllegalStateException.html">java.lang.IllegalStateException</a></code></td>
               <td>
@@ -1280,10 +1280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/ListFragment.html#getListAdapter()">getListAdapter</a></code></td>
               <td></td>
@@ -1311,10 +1311,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>shown:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1338,10 +1338,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>position:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td></td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/package-summary.html b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/package-summary.html
index 9669519..6c3bb93 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/fragment/app/package-summary.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/fragment/app/package-summary.html
@@ -76,7 +76,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentManager.BackStackEntry.html">FragmentManager.BackStackEntry</a></code></td>
             <td>
@@ -113,7 +113,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/DialogFragment.html">DialogFragment</a></code></td>
             <td>
@@ -230,7 +230,7 @@
     <h2>Exceptions</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/Fragment.InstantiationException.html">Fragment.InstantiationException</a></code></td>
             <td>
@@ -243,7 +243,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/FragmentStateManagerControl.html">FragmentStateManagerControl</a></code></td>
             <td></td>
diff --git a/testData/fragment/docs/reference/kotlin/androidx/packages.html b/testData/fragment/docs/reference/kotlin/androidx/packages.html
index ae85e97..9008385 100644
--- a/testData/fragment/docs/reference/kotlin/androidx/packages.html
+++ b/testData/fragment/docs/reference/kotlin/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/fragment/app/package-summary.html">androidx.fragment.app</a></code></td>
             <td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/classes.html b/testData/getterSetterModifier/docs/reference/dokkatest/classes.html
index d1f14ef..ddef9e1 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/classes.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/java/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
@@ -26,7 +26,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/kotlin/KotlinExtendingJava.html">KotlinExtendingJava</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaLeafClass.html b/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaLeafClass.html
index df2c6ba..c6ecad8 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaLeafClass.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaLeafClass.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/java/JavaLeafClass.html#JavaLeafClass()">JavaLeafClass</a>()</code></div>
@@ -74,10 +74,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -99,15 +99,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/kotlin/KotlinSuperClass.html">dokkatest.kotlin.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
@@ -175,15 +175,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/kotlin/KotlinSuperClass.html">dokkatest.kotlin.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaSuperClass.html b/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaSuperClass.html
index 2531534..60f6334 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaSuperClass.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/java/JavaSuperClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/kotlin/KotlinExtendingJava.html">KotlinExtendingJava</a></code></td>
                 <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/java/JavaSuperClass.html#JavaSuperClass()">JavaSuperClass</a>()</code></div>
@@ -72,10 +72,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/java/package-summary.html b/testData/getterSetterModifier/docs/reference/dokkatest/java/package-summary.html
index 4fac1ab..d7cbef7 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/java/package-summary.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/java/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/java/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinExtendingJava.html b/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinExtendingJava.html
index cbaa70a..75d8299 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinExtendingJava.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinExtendingJava.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/kotlin/KotlinExtendingJava.html#KotlinExtendingJava()">KotlinExtendingJava</a>()</code></div>
@@ -74,15 +74,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/java/JavaSuperClass.html">dokkatest.java.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -109,15 +109,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/java/JavaSuperClass.html">dokkatest.java.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinSuperClass.html b/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinSuperClass.html
index 762e33a..34a5abe 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinSuperClass.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/KotlinSuperClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/java/JavaLeafClass.html">JavaLeafClass</a></code></td>
                 <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/kotlin/KotlinSuperClass.html#KotlinSuperClass()">KotlinSuperClass</a>()</code></div>
@@ -100,10 +100,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/package-summary.html b/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/package-summary.html
index a48f025..7338129 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/package-summary.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/kotlin/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/kotlin/KotlinExtendingJava.html">KotlinExtendingJava</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/dokkatest/packages.html b/testData/getterSetterModifier/docs/reference/dokkatest/packages.html
index 8d41dc2..1501fd5 100644
--- a/testData/getterSetterModifier/docs/reference/dokkatest/packages.html
+++ b/testData/getterSetterModifier/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/java/package-summary.html">dokkatest.java</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/classes.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/classes.html
index dd7c4d0..93893d6 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/java/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
@@ -26,7 +26,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html">KotlinExtendingJava</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaLeafClass.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaLeafClass.html
index 1438f1e..95b6e62 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaLeafClass.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaLeafClass.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/java/JavaLeafClass.html#JavaLeafClass()">JavaLeafClass</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -74,15 +74,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html">dokkatest.kotlin.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -150,15 +150,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html">dokkatest.kotlin.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaSuperClass.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaSuperClass.html
index fb23a5b..f1be791 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaSuperClass.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/JavaSuperClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html">KotlinExtendingJava</a></code></td>
                 <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/java/JavaSuperClass.html#JavaSuperClass()">JavaSuperClass</a>()</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/package-summary.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/package-summary.html
index b618122..9e3a6ba 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/package-summary.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/java/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/java/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html
index 6a2ea93..4188dfb 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html#KotlinExtendingJava()">KotlinExtendingJava</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -74,15 +74,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/java/JavaSuperClass.html">dokkatest.java.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -109,15 +109,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/java/JavaSuperClass.html">dokkatest.java.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html
index 15e6577..a71adb0 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/java/JavaLeafClass.html">JavaLeafClass</a></code></td>
                 <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/kotlin/KotlinSuperClass.html#KotlinSuperClass()">KotlinSuperClass</a>()</code></div>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/package-summary.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/package-summary.html
index 7d84dec..181b446 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/package-summary.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/kotlin/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/kotlin/KotlinExtendingJava.html">KotlinExtendingJava</a></code></td>
             <td></td>
diff --git a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/packages.html b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/packages.html
index 82df92f..f3ec20e 100644
--- a/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/getterSetterModifier/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/java/package-summary.html">dokkatest.java</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/dokkatest/classes.html b/testData/hidden/docs/reference/dokkatest/classes.html
index 7adbb86..9179c7b 100644
--- a/testData/hidden/docs/reference/dokkatest/classes.html
+++ b/testData/hidden/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/nothidden/JavaLeafClass2.html">JavaLeafClass2</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/dokkatest/nothidden/JavaLeafClass2.html b/testData/hidden/docs/reference/dokkatest/nothidden/JavaLeafClass2.html
index 72b2aeb..906b9fd 100644
--- a/testData/hidden/docs/reference/dokkatest/nothidden/JavaLeafClass2.html
+++ b/testData/hidden/docs/reference/dokkatest/nothidden/JavaLeafClass2.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/nothidden/JavaLeafClass2.html#JavaLeafClass2()">JavaLeafClass2</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;baz</code></td>
               <td>
diff --git a/testData/hidden/docs/reference/dokkatest/nothidden/package-summary.html b/testData/hidden/docs/reference/dokkatest/nothidden/package-summary.html
index f2ad3d1..b3674e4 100644
--- a/testData/hidden/docs/reference/dokkatest/nothidden/package-summary.html
+++ b/testData/hidden/docs/reference/dokkatest/nothidden/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/nothidden/JavaLeafClass2.html">JavaLeafClass2</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/dokkatest/packages.html b/testData/hidden/docs/reference/dokkatest/packages.html
index 89abb5a..c46499e 100644
--- a/testData/hidden/docs/reference/dokkatest/packages.html
+++ b/testData/hidden/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/nothidden/package-summary.html">dokkatest.nothidden</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html b/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
index bef638c..cd57378 100644
--- a/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
+++ b/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html#JavaNestedPackageClass()">JavaNestedPackageClass</a>()</code></div>
diff --git a/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/package-summary.html b/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/package-summary.html
index 85a9976..7812d72 100644
--- a/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/package-summary.html
+++ b/testData/hidden/docs/reference/dokkatest/toplevelhidden/nestedpackage/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html">JavaNestedPackageClass</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/kotlin/dokkatest/classes.html b/testData/hidden/docs/reference/kotlin/dokkatest/classes.html
index 9228aa2..18e09d5 100644
--- a/testData/hidden/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/hidden/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html">JavaLeafClass2</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html b/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html
index 78bbc35..676ee09 100644
--- a/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html
+++ b/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html#JavaLeafClass2()">JavaLeafClass2</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
             <td>
@@ -59,10 +59,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>baz:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
diff --git a/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/package-summary.html b/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/package-summary.html
index f1277d3..a7d9fa3 100644
--- a/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/package-summary.html
+++ b/testData/hidden/docs/reference/kotlin/dokkatest/nothidden/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/nothidden/JavaLeafClass2.html">JavaLeafClass2</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/kotlin/dokkatest/packages.html b/testData/hidden/docs/reference/kotlin/dokkatest/packages.html
index cc26864..88a5666 100644
--- a/testData/hidden/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/hidden/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/nothidden/package-summary.html">dokkatest.nothidden</a></code></td>
             <td></td>
diff --git a/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html b/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
index c8f991f..c464d6f 100644
--- a/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
+++ b/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html#JavaNestedPackageClass()">JavaNestedPackageClass</a>()</code></div>
diff --git a/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/package-summary.html b/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/package-summary.html
index bf20806..e730335 100644
--- a/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/package-summary.html
+++ b/testData/hidden/docs/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevelhidden/nestedpackage/JavaNestedPackageClass.html">JavaNestedPackageClass</a></code></td>
             <td></td>
diff --git a/testData/inheritance/docs/reference/dokkatest/classes.html b/testData/inheritance/docs/reference/dokkatest/classes.html
index 474d34e..844629d 100644
--- a/testData/inheritance/docs/reference/dokkatest/classes.html
+++ b/testData/inheritance/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
@@ -30,7 +30,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinAbstractClass.html">KotlinAbstractClass</a></code></td>
             <td></td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/JavaLeafClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/JavaLeafClass.html
index 0577e66..1ad7d03 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/JavaLeafClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/JavaLeafClass.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/JavaLeafClass.html#JavaLeafClass()">JavaLeafClass</a>()</code></div>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -73,15 +73,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/JavaSuperClass.html">dokkatest.inheritance.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
                       <td>
@@ -98,7 +98,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinSubClass.html">dokkatest.inheritance.KotlinSubClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
                       <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;baz</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSubClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSubClass.html
index 252a7b6..e8db59c 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSubClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSubClass.html
@@ -39,7 +39,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinLeafClass.html">KotlinLeafClass</a></code></td>
                 <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/JavaSubClass.html#JavaSubClass()">JavaSubClass</a>()</code></div>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinAbstractClass.html">dokkatest.inheritance.KotlinAbstractClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
@@ -113,7 +113,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -129,7 +129,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinSuperClass.html">dokkatest.inheritance.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;bar</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSuperClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSuperClass.html
index f165fb0..084173d 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSuperClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/JavaSuperClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinSubClass.html">KotlinSubClass</a></code></td>
                 <td></td>
@@ -31,7 +31,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
                 <td></td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/JavaSuperClass.html#JavaSuperClass()">JavaSuperClass</a>()</code></div>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;foo</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinAbstractClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinAbstractClass.html
index 811ed03..1fa2049 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinAbstractClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinAbstractClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinSuperClass.html">KotlinSuperClass</a></code></td>
                 <td></td>
@@ -31,7 +31,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaSubClass.html">JavaSubClass</a></code></td>
                 <td></td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/KotlinAbstractClass.html#KotlinAbstractClass()">KotlinAbstractClass</a>()</code></div>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -90,15 +90,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinInterface.html b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinInterface.html
index 20404e1..897e4ee 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinInterface.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinInterface.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinAbstractClass.html">KotlinAbstractClass</a></code></td>
                 <td></td>
@@ -31,7 +31,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaSubClass.html">JavaSubClass</a></code></td>
                 <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>default int</code></td>
             <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinLeafClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinLeafClass.html
index 715ba39..54d3c13 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinLeafClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinLeafClass.html
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/KotlinLeafClass.html#KotlinLeafClass()">KotlinLeafClass</a>()</code></div>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -80,15 +80,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/JavaSubClass.html">dokkatest.inheritance.JavaSubClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
                       <td>
@@ -105,7 +105,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinAbstractClass.html">dokkatest.inheritance.KotlinAbstractClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
@@ -121,7 +121,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -137,7 +137,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinSuperClass.html">dokkatest.inheritance.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -185,10 +185,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;baz</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSubClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSubClass.html
index 9457704..4966fc5 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSubClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSubClass.html
@@ -33,7 +33,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
                 <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/KotlinSubClass.html#KotlinSubClass()">KotlinSubClass</a>()</code></div>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -83,15 +83,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/JavaSuperClass.html">dokkatest.inheritance.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
                       <td>
@@ -121,10 +121,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;bar</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSuperClass.html b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSuperClass.html
index b98ce16..0a39a18 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSuperClass.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/KotlinSuperClass.html
@@ -33,7 +33,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaSubClass.html">JavaSubClass</a></code></td>
                 <td></td>
@@ -49,7 +49,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinLeafClass.html">KotlinLeafClass</a></code></td>
                 <td></td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inheritance/KotlinSuperClass.html#KotlinSuperClass()">KotlinSuperClass</a>()</code></div>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>int</code></td>
             <td>
@@ -117,15 +117,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinAbstractClass.html">dokkatest.inheritance.KotlinAbstractClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
@@ -141,7 +141,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>int</code></td>
                       <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;foo</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/dokkatest/inheritance/package-summary.html b/testData/inheritance/docs/reference/dokkatest/inheritance/package-summary.html
index b55e03d..29ee287 100644
--- a/testData/inheritance/docs/reference/dokkatest/inheritance/package-summary.html
+++ b/testData/inheritance/docs/reference/dokkatest/inheritance/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inheritance/KotlinInterface.html">KotlinInterface</a></code></td>
             <td></td>
@@ -21,7 +21,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
diff --git a/testData/inheritance/docs/reference/dokkatest/packages.html b/testData/inheritance/docs/reference/dokkatest/packages.html
index 8fb3539..a5870a8 100644
--- a/testData/inheritance/docs/reference/dokkatest/packages.html
+++ b/testData/inheritance/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inheritance/package-summary.html">dokkatest.inheritance</a></code></td>
             <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/classes.html b/testData/inheritance/docs/reference/kotlin/dokkatest/classes.html
index 1465e39..03ae75a 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
@@ -30,7 +30,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html">KotlinAbstractClass</a></code></td>
             <td></td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html
index a8ba4cf..c8fd190 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html#JavaLeafClass()">JavaLeafClass</a>()</code></div>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
             <td>
@@ -73,15 +73,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html">dokkatest.inheritance.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
                       <td>
@@ -98,7 +98,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html">dokkatest.inheritance.KotlinSubClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
                       <td>
@@ -128,10 +128,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>baz:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSubClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSubClass.html
index 3609a86..e072ba8 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSubClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSubClass.html
@@ -39,7 +39,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html">KotlinLeafClass</a></code></td>
                 <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/JavaSubClass.html#JavaSubClass()">JavaSubClass</a>()</code></div>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
             <td>
@@ -89,15 +89,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html">dokkatest.inheritance.KotlinAbstractClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -113,7 +113,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -129,7 +129,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html">dokkatest.inheritance.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bar:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html
index ccb413e..7adefd7 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html">KotlinSubClass</a></code></td>
                 <td></td>
@@ -31,7 +31,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
                 <td></td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html#JavaSuperClass()">JavaSuperClass</a>()</code></div>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>foo:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>!</code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html
index 518bf4d..0e36bbb 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html">KotlinSuperClass</a></code></td>
                 <td></td>
@@ -31,7 +31,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaSubClass.html">JavaSubClass</a></code></td>
                 <td></td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html#KotlinAbstractClass()">KotlinAbstractClass</a>()</code></div>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -90,15 +90,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinInterface.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinInterface.html
index f1262a5..9f6b519 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinInterface.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinInterface.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html">KotlinAbstractClass</a></code></td>
                 <td></td>
@@ -31,7 +31,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaSubClass.html">JavaSubClass</a></code></td>
                 <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html
index 095bdf0..7ba914e 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html#KotlinLeafClass()">KotlinLeafClass</a>()</code></div>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
@@ -80,15 +80,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/JavaSubClass.html">dokkatest.inheritance.JavaSubClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
                       <td>
@@ -105,7 +105,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html">dokkatest.inheritance.KotlinAbstractClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -121,7 +121,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -137,7 +137,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html">dokkatest.inheritance.KotlinSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -185,10 +185,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>baz:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html
index bee0262..6d9130a 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html
@@ -33,7 +33,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
                 <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinSubClass.html#KotlinSubClass()">KotlinSubClass</a>()</code></div>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
@@ -83,15 +83,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/JavaSuperClass.html">dokkatest.inheritance.JavaSuperClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
                       <td>
@@ -121,10 +121,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>bar:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html
index 867c1bf..8fbf367 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html
@@ -33,7 +33,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaSubClass.html">JavaSubClass</a></code></td>
                 <td></td>
@@ -49,7 +49,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinLeafClass.html">KotlinLeafClass</a></code></td>
                 <td></td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinSuperClass.html#KotlinSuperClass()">KotlinSuperClass</a>()</code></div>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -117,15 +117,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinAbstractClass.html">dokkatest.inheritance.KotlinAbstractClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -141,7 +141,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inheritance/KotlinInterface.html">dokkatest.inheritance.KotlinInterface</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -182,10 +182,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>foo:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
               <td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/package-summary.html b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/package-summary.html
index 418ba5a..9e44401 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/package-summary.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/inheritance/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/KotlinInterface.html">KotlinInterface</a></code></td>
             <td></td>
@@ -21,7 +21,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/JavaLeafClass.html">JavaLeafClass</a></code></td>
             <td></td>
diff --git a/testData/inheritance/docs/reference/kotlin/dokkatest/packages.html b/testData/inheritance/docs/reference/kotlin/dokkatest/packages.html
index c852d33..7bc6d04 100644
--- a/testData/inheritance/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/inheritance/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inheritance/package-summary.html">dokkatest.inheritance</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/classes.html b/testData/innerClasses/docs/reference/dokkatest/classes.html
index e24c286..9949826 100644
--- a/testData/innerClasses/docs/reference/dokkatest/classes.html
+++ b/testData/innerClasses/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_O">O</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.html">OuterClass</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerClass.html b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerClass.html
index bc1ebae..41cd32e 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerClass.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerClass.html
@@ -33,7 +33,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.Leaf.html">OuterClass.Leaf</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inner/OuterClass.InnerClass.html#InnerClass()">InnerClass</a>()</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerEnum.html b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerEnum.html
index 89723cd..18ef97e 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerEnum.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerEnum.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.InnerEnum.html#A">A</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerInterface.html b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerInterface.html
index 763cb4e..c051586 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerInterface.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.InnerInterface.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.InnerClass.html">OuterClass.InnerClass</a></code></td>
                 <td>
@@ -33,7 +33,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.Leaf.html">OuterClass.Leaf</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.Companion.html b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.Companion.html
index 2b1b2d8..b19e683 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.Companion.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.html b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.html
index 92306f9..bb6239a 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.Leaf.html
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.Leaf.Companion.html">OuterClass.Leaf.Companion</a></code></td>
             <td></td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inner/OuterClass.Leaf.html#Leaf()">Leaf</a>()</code></div>
@@ -71,15 +71,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/inner/OuterClass.InnerClass.html">dokkatest.inner.OuterClass.InnerClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.html b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.html
index 08b8597..951c745 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/OuterClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.InnerClass.html">OuterClass.InnerClass</a></code></td>
                 <td>
@@ -33,7 +33,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.Leaf.html">OuterClass.Leaf</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.InnerClass.html">OuterClass.InnerClass</a></code></td>
             <td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/inner/OuterClass.html#OuterClass()">OuterClass</a>()</code></div>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/inner/package-summary.html b/testData/innerClasses/docs/reference/dokkatest/inner/package-summary.html
index 9f4a603..7f9419b 100644
--- a/testData/innerClasses/docs/reference/dokkatest/inner/package-summary.html
+++ b/testData/innerClasses/docs/reference/dokkatest/inner/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.InnerInterface.html">OuterClass.InnerInterface</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.html">OuterClass</a></code></td>
             <td>
@@ -47,7 +47,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/OuterClass.InnerEnum.html">OuterClass.InnerEnum</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/dokkatest/packages.html b/testData/innerClasses/docs/reference/dokkatest/packages.html
index 77d7a09..2f34344 100644
--- a/testData/innerClasses/docs/reference/dokkatest/packages.html
+++ b/testData/innerClasses/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/inner/package-summary.html">dokkatest.inner</a></code></td>
             <td></td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/classes.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/classes.html
index 5bba6b7..d21770a 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_O">O</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.html">OuterClass</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html
index a6e2a20..41e8705 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html
@@ -33,7 +33,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html">OuterClass.Leaf</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html#InnerClass()">InnerClass</a>()</code></div>
@@ -68,10 +68,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerEnum.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerEnum.html
index 4408960..efbf14b 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerEnum.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerEnum.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerEnum.html#A">A</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerInterface.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerInterface.html
index a6a83cf..c9c9f5a 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerInterface.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.InnerInterface.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html">OuterClass.InnerClass</a></code></td>
                 <td>
@@ -33,7 +33,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html">OuterClass.Leaf</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.Companion.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.Companion.html
index 0b50251..9999d79 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.Companion.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html
index e3afd5a..25309b5 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html#Leaf()">Leaf</a>()</code></div>
@@ -73,15 +73,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html">dokkatest.inner.OuterClass.InnerClass</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.html
index 4d8367e..3224f52 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/OuterClass.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html">OuterClass.InnerClass</a></code></td>
                 <td>
@@ -33,7 +33,7 @@
       <div id="subclasses-indirect-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.Leaf.html">OuterClass.Leaf</a></code></td>
                 <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerClass.html">OuterClass.InnerClass</a></code></td>
             <td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.html#OuterClass()">OuterClass</a>()</code></div>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/package-summary.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/package-summary.html
index bb8a46c..7d70a8e 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/package-summary.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/inner/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerInterface.html">OuterClass.InnerInterface</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.html">OuterClass</a></code></td>
             <td>
@@ -47,7 +47,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/OuterClass.InnerEnum.html">OuterClass.InnerEnum</a></code></td>
             <td>
diff --git a/testData/innerClasses/docs/reference/kotlin/dokkatest/packages.html b/testData/innerClasses/docs/reference/kotlin/dokkatest/packages.html
index 0278aa7..5feb309 100644
--- a/testData/innerClasses/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/innerClasses/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/inner/package-summary.html">dokkatest.inner</a></code></td>
             <td></td>
diff --git a/testData/linking/docs/reference/dokkatest/classes.html b/testData/linking/docs/reference/dokkatest/classes.html
index ca9e3b7..fb854b0 100644
--- a/testData/linking/docs/reference/dokkatest/classes.html
+++ b/testData/linking/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/JavaEnum.html">JavaEnum</a></code></td>
             <td></td>
@@ -28,7 +28,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/KotlinEnum.html">KotlinEnum</a></code></td>
             <td></td>
diff --git a/testData/linking/docs/reference/dokkatest/linking/JavaEnum.html b/testData/linking/docs/reference/dokkatest/linking/JavaEnum.html
index 6fe2b44..dfcc595 100644
--- a/testData/linking/docs/reference/dokkatest/linking/JavaEnum.html
+++ b/testData/linking/docs/reference/dokkatest/linking/JavaEnum.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/JavaEnum.html#ON_DECEIT">ON_DECEIT</a></code></td>
             <td></td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/linking/JavaEnum.html#JavaEnum()">JavaEnum</a>()</code></div>
diff --git a/testData/linking/docs/reference/dokkatest/linking/JavaLinker.html b/testData/linking/docs/reference/dokkatest/linking/JavaLinker.html
index 4c5b89e..22b49ae 100644
--- a/testData/linking/docs/reference/dokkatest/linking/JavaLinker.html
+++ b/testData/linking/docs/reference/dokkatest/linking/JavaLinker.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/linking/JavaLinker.html#JavaLinker()">JavaLinker</a>()</code></div>
diff --git a/testData/linking/docs/reference/dokkatest/linking/KotlinEnum.html b/testData/linking/docs/reference/dokkatest/linking/KotlinEnum.html
index bfe7641..c91338b 100644
--- a/testData/linking/docs/reference/dokkatest/linking/KotlinEnum.html
+++ b/testData/linking/docs/reference/dokkatest/linking/KotlinEnum.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/KotlinEnum.html#ON_CATASTROPHE">ON_CATASTROPHE</a></code></td>
             <td></td>
diff --git a/testData/linking/docs/reference/dokkatest/linking/KotlinLinkerKt.html b/testData/linking/docs/reference/dokkatest/linking/KotlinLinkerKt.html
index fbec1f5..a961a02 100644
--- a/testData/linking/docs/reference/dokkatest/linking/KotlinLinkerKt.html
+++ b/testData/linking/docs/reference/dokkatest/linking/KotlinLinkerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final void</code></td>
             <td>
diff --git a/testData/linking/docs/reference/dokkatest/linking/package-summary.html b/testData/linking/docs/reference/dokkatest/linking/package-summary.html
index 74add93..d0f9cd0 100644
--- a/testData/linking/docs/reference/dokkatest/linking/package-summary.html
+++ b/testData/linking/docs/reference/dokkatest/linking/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/JavaLinker.html">JavaLinker</a></code></td>
             <td>
@@ -27,7 +27,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/JavaEnum.html">JavaEnum</a></code></td>
             <td></td>
diff --git a/testData/linking/docs/reference/dokkatest/packages.html b/testData/linking/docs/reference/dokkatest/packages.html
index 769e9d4..bfbf96b 100644
--- a/testData/linking/docs/reference/dokkatest/packages.html
+++ b/testData/linking/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/linking/package-summary.html">dokkatest.linking</a></code></td>
             <td>
diff --git a/testData/linking/docs/reference/kotlin/dokkatest/classes.html b/testData/linking/docs/reference/kotlin/dokkatest/classes.html
index 68d0c65..14e660f 100644
--- a/testData/linking/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/linking/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/JavaEnum.html">JavaEnum</a></code></td>
             <td></td>
@@ -28,7 +28,7 @@
     <h2 id="letter_K">K</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/KotlinEnum.html">KotlinEnum</a></code></td>
             <td></td>
diff --git a/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaEnum.html b/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaEnum.html
index 038a1af..63dec2d 100644
--- a/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaEnum.html
+++ b/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaEnum.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/JavaEnum.html#ON_DECEIT">ON_DECEIT</a></code></td>
             <td></td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/linking/JavaEnum.html#JavaEnum()">JavaEnum</a>()</code></div>
diff --git a/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaLinker.html b/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaLinker.html
index 3d31f0f..e2fe455 100644
--- a/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaLinker.html
+++ b/testData/linking/docs/reference/kotlin/dokkatest/linking/JavaLinker.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/linking/JavaLinker.html#JavaLinker()">JavaLinker</a>()</code></div>
diff --git a/testData/linking/docs/reference/kotlin/dokkatest/linking/KotlinEnum.html b/testData/linking/docs/reference/kotlin/dokkatest/linking/KotlinEnum.html
index 5aebd23..f369c9b 100644
--- a/testData/linking/docs/reference/kotlin/dokkatest/linking/KotlinEnum.html
+++ b/testData/linking/docs/reference/kotlin/dokkatest/linking/KotlinEnum.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/KotlinEnum.html#ON_CATASTROPHE">ON_CATASTROPHE</a></code></td>
             <td></td>
diff --git a/testData/linking/docs/reference/kotlin/dokkatest/linking/package-summary.html b/testData/linking/docs/reference/kotlin/dokkatest/linking/package-summary.html
index e32a3b4..d6d03bd 100644
--- a/testData/linking/docs/reference/kotlin/dokkatest/linking/package-summary.html
+++ b/testData/linking/docs/reference/kotlin/dokkatest/linking/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/JavaLinker.html">JavaLinker</a></code></td>
             <td>
@@ -23,7 +23,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/JavaEnum.html">JavaEnum</a></code></td>
             <td></td>
@@ -38,7 +38,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/linking/docs/reference/kotlin/dokkatest/packages.html b/testData/linking/docs/reference/kotlin/dokkatest/packages.html
index d1b6ab4..7d5c714 100644
--- a/testData/linking/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/linking/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/linking/package-summary.html">dokkatest.linking</a></code></td>
             <td>
diff --git a/testData/multifile/docs/reference/kotlin/multifile/classes.html b/testData/multifile/docs/reference/kotlin/multifile/classes.html
index 6a40286..beb7293 100644
--- a/testData/multifile/docs/reference/kotlin/multifile/classes.html
+++ b/testData/multifile/docs/reference/kotlin/multifile/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_P">P</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/multifile/PagingRx.html">PagingRx</a></code></td>
             <td></td>
diff --git a/testData/multifile/docs/reference/kotlin/multifile/package-summary.html b/testData/multifile/docs/reference/kotlin/multifile/package-summary.html
index 371028c..e7dfc3b 100644
--- a/testData/multifile/docs/reference/kotlin/multifile/package-summary.html
+++ b/testData/multifile/docs/reference/kotlin/multifile/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a>&lt;T&gt;</code></td>
             <td>
@@ -23,7 +23,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/io/reactivex/Observable.html">Observable</a>&lt;<a href="/reference/kotlin/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a>&lt;Value&gt;&gt;</code></td>
             <td>
diff --git a/testData/multifile/docs/reference/kotlin/multifile/packages.html b/testData/multifile/docs/reference/kotlin/multifile/packages.html
index 0e1912d..c701138 100644
--- a/testData/multifile/docs/reference/kotlin/multifile/packages.html
+++ b/testData/multifile/docs/reference/kotlin/multifile/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/multifile/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/multifile/package-summary.html">multifile</a></code></td>
             <td></td>
diff --git a/testData/multifile/docs/reference/multifile/PagingRx.html b/testData/multifile/docs/reference/multifile/PagingRx.html
index 8069f7a..47e8271 100644
--- a/testData/multifile/docs/reference/multifile/PagingRx.html
+++ b/testData/multifile/docs/reference/multifile/PagingRx.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/Observable.html">Observable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/multifile/PagingRx.html#PagingRx()">PagingRx</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/[JVM root]/&lt;Error class: unknown class&gt;.html">&lt;Error class: unknown class&gt;</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
diff --git a/testData/multifile/docs/reference/multifile/classes.html b/testData/multifile/docs/reference/multifile/classes.html
index 42debd5..7bfd54a 100644
--- a/testData/multifile/docs/reference/multifile/classes.html
+++ b/testData/multifile/docs/reference/multifile/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_P">P</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/multifile/PagingRx.html">PagingRx</a></code></td>
             <td></td>
diff --git a/testData/multifile/docs/reference/multifile/package-summary.html b/testData/multifile/docs/reference/multifile/package-summary.html
index 626d2a1..b9daabc 100644
--- a/testData/multifile/docs/reference/multifile/package-summary.html
+++ b/testData/multifile/docs/reference/multifile/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/multifile/PagingRx.html">PagingRx</a></code></td>
             <td></td>
diff --git a/testData/multifile/docs/reference/multifile/packages.html b/testData/multifile/docs/reference/multifile/packages.html
index a76c2e3..253e9b0 100644
--- a/testData/multifile/docs/reference/multifile/packages.html
+++ b/testData/multifile/docs/reference/multifile/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/multifile/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/multifile/package-summary.html">multifile</a></code></td>
             <td></td>
diff --git a/testData/paging/docs/reference/androidx/classes.html b/testData/paging/docs/reference/androidx/classes.html
index 07dcdd4..d2d4009 100644
--- a/testData/paging/docs/reference/androidx/classes.html
+++ b/testData/paging/docs/reference/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_A">A</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/AdjacentItems.html">AdjacentItems</a></code></td>
             <td>
@@ -42,7 +42,7 @@
     <h2 id="letter_C">C</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/CachedPagingDataKt.html">CachedPagingDataKt</a></code></td>
             <td></td>
@@ -59,7 +59,7 @@
     <h2 id="letter_D">D</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/DataSource.html">DataSource</a></code></td>
             <td>
@@ -84,7 +84,7 @@
     <h2 id="letter_E">E</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/ExperimentalPagingApi.html">ExperimentalPagingApi</a></code></td>
             <td>
@@ -97,7 +97,7 @@
     <h2 id="letter_I">I</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/InvalidatingPagingSourceFactory.html">InvalidatingPagingSourceFactory</a></code></td>
             <td>
@@ -146,7 +146,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/ListenableFuturePagingSource.html">ListenableFuturePagingSource</a></code></td>
             <td>
@@ -217,7 +217,7 @@
     <h2 id="letter_P">P</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a></code></td>
             <td>
@@ -442,7 +442,7 @@
     <h2 id="letter_R">R</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/RemoteMediator.html">RemoteMediator</a></code></td>
             <td>
@@ -503,7 +503,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/packages.html b/testData/paging/docs/reference/androidx/packages.html
index 88afd1e..488a529 100644
--- a/testData/paging/docs/reference/androidx/packages.html
+++ b/testData/paging/docs/reference/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html">androidx.paging</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/AdjacentItems.html b/testData/paging/docs/reference/androidx/paging/AdjacentItems.html
index 1bcef11..501193a 100644
--- a/testData/paging/docs/reference/androidx/paging/AdjacentItems.html
+++ b/testData/paging/docs/reference/androidx/paging/AdjacentItems.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final T</code></td>
             <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/AdjacentItems.html#AdjacentItems(kotlin.Any,kotlin.Any)">AdjacentItems</a>(T&nbsp;before,&nbsp;T&nbsp;after)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html b/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html
index 8b9a155..c999dbd 100644
--- a/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html
+++ b/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -57,10 +57,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;previousList</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.html b/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.html
index 9c37a3a..ed92736 100644
--- a/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.html
+++ b/testData/paging/docs/reference/androidx/paging/AsyncPagedListDiffer.html
@@ -21,10 +21,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a></code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <span><del><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#AsyncPagedListDiffer(androidx.recyclerview.widget.RecyclerView.Adapter,androidx.recyclerview.widget.DiffUtil.ItemCallback)">AsyncPagedListDiffer</a></del></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/RecyclerView.Adapter.html">RecyclerView.Adapter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;&nbsp;adapter,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;diffCallback<br>)</code></div>
@@ -103,10 +103,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -183,10 +183,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -230,10 +230,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/RecyclerView.Adapter.html">RecyclerView.Adapter</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ?&gt;&nbsp;adapter</code></td>
               <td>
@@ -265,10 +265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#removeLoadStateListener(kotlin.Function2)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -302,10 +302,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;listener</code></td>
               <td>
@@ -319,10 +319,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -343,10 +343,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;<a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;<a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;callback</code></td>
               <td>
@@ -360,10 +360,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -385,10 +385,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;index</code></td>
               <td>
@@ -402,10 +402,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -419,10 +419,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-index-out-of-bounds-exception/index.html">kotlin.IndexOutOfBoundsException</a>&nbsp;kotlin.IndexOutOfBoundsException</code></td>
               <td>
@@ -441,10 +441,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -458,10 +458,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -482,10 +482,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;listener</code></td>
               <td>
@@ -499,10 +499,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -523,10 +523,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;<a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;<a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;callback</code></td>
               <td>
@@ -540,10 +540,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -565,10 +565,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;pagedList</code></td>
               <td>
@@ -589,10 +589,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;pagedList</code></td>
               <td>
@@ -612,10 +612,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a>&nbsp;kotlin.IllegalStateException</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/AsyncPagingDataDiffer.html b/testData/paging/docs/reference/androidx/paging/AsyncPagingDataDiffer.html
index a6a2531..ad3aa61 100644
--- a/testData/paging/docs/reference/androidx/paging/AsyncPagingDataDiffer.html
+++ b/testData/paging/docs/reference/androidx/paging/AsyncPagingDataDiffer.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/AsyncPagingDataDiffer.html#AsyncPagingDataDiffer(androidx.recyclerview.widget.DiffUtil.ItemCallback,androidx.recyclerview.widget.ListUpdateCallback,kotlinx.coroutines.CoroutineDispatcher,kotlinx.coroutines.CoroutineDispatcher)">AsyncPagingDataDiffer</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;diffCallback,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/ListUpdateCallback.html">ListUpdateCallback</a>&nbsp;updateCallback,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>&nbsp;mainDispatcher,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>&nbsp;workerDispatcher<br>)</code></div>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -158,10 +158,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -238,10 +238,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -255,10 +255,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagingDataDiffer.html#removeLoadStateListener(kotlin.Function1)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -287,10 +287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -304,10 +304,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagingDataDiffer.html#removeOnPagesUpdatedListener(kotlin.Function0)">removeOnPagesUpdatedListener</a></code></td>
               <td></td>
@@ -325,10 +325,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;index</code></td>
               <td>
@@ -342,10 +342,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -364,10 +364,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;index</code></td>
               <td>
@@ -381,10 +381,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -424,10 +424,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.html#invalidate()">invalidate</a></code></td>
               <td></td>
@@ -444,10 +444,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -461,10 +461,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagingDataDiffer.html#addLoadStateListener(kotlin.Function1)">addLoadStateListener</a></code></td>
               <td></td>
@@ -481,10 +481,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -498,10 +498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagingDataDiffer.html#addOnPagesUpdatedListener(kotlin.Function0)">addOnPagesUpdatedListener</a></code></td>
               <td></td>
@@ -540,10 +540,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/Pager.html">Pager</a></code></td>
               <td></td>
@@ -561,10 +561,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagingDataDiffer.html#submitData(androidx.paging.PagingData)">submitData</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/CachedPagingDataKt.html b/testData/paging/docs/reference/androidx/paging/CachedPagingDataKt.html
index 4318d9b..bf11f7c 100644
--- a/testData/paging/docs/reference/androidx/paging/CachedPagingDataKt.html
+++ b/testData/paging/docs/reference/androidx/paging/CachedPagingDataKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&gt;</code></td>
             <td>
@@ -81,10 +81,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;scope</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/CombinedLoadStates.html b/testData/paging/docs/reference/androidx/paging/CombinedLoadStates.html
index 763ba8f..115671b 100644
--- a/testData/paging/docs/reference/androidx/paging/CombinedLoadStates.html
+++ b/testData/paging/docs/reference/androidx/paging/CombinedLoadStates.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/CombinedLoadStates.html#CombinedLoadStates(androidx.paging.LoadState,androidx.paging.LoadState,androidx.paging.LoadState,androidx.paging.LoadStates,androidx.paging.LoadStates)">CombinedLoadStates</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;refresh,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;prepend,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;append,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadStates.html">LoadStates</a>&nbsp;source,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="/reference/androidx/paging/LoadStates.html">LoadStates</a>&nbsp;mediator<br>)</code></div>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/DataSource.Factory.html b/testData/paging/docs/reference/androidx/paging/DataSource.Factory.html
index 8036089..d2cd1d3 100644
--- a/testData/paging/docs/reference/androidx/paging/DataSource.Factory.html
+++ b/testData/paging/docs/reference/androidx/paging/DataSource.Factory.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/DataSource.Factory.html#Factory()">Factory</a>()</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -96,10 +96,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -125,10 +125,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -160,10 +160,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.html">DataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -183,10 +183,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -206,10 +206,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -223,10 +223,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/DataSource.Factory.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -252,10 +252,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -275,10 +275,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -292,10 +292,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/DataSource.Factory.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -323,10 +323,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a>&nbsp;config</code></td>
               <td>
@@ -358,10 +358,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -380,10 +380,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;pageSize</code></td>
               <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/DataSource.InvalidatedCallback.html b/testData/paging/docs/reference/androidx/paging/DataSource.InvalidatedCallback.html
index 53b0873..ee363ae 100644
--- a/testData/paging/docs/reference/androidx/paging/DataSource.InvalidatedCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/DataSource.InvalidatedCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/AnyThread.html">AnyThread</a> void</code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/DataSource.html b/testData/paging/docs/reference/androidx/paging/DataSource.html
index a817d5e..9cb068f 100644
--- a/testData/paging/docs/reference/androidx/paging/DataSource.html
+++ b/testData/paging/docs/reference/androidx/paging/DataSource.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a></code></td>
                 <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/DataSource.Factory.html">DataSource.Factory</a></code></td>
             <td>
@@ -101,10 +101,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -118,10 +118,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/AnyThread.html">AnyThread</a> void</code></td>
             <td>
@@ -168,10 +168,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -193,10 +193,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.InvalidatedCallback.html">DataSource.InvalidatedCallback</a>&nbsp;onInvalidatedCallback</code></td>
               <td>
@@ -222,10 +222,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -245,10 +245,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.html">DataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/DataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -291,10 +291,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -314,10 +314,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.html">DataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -331,10 +331,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/DataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -359,10 +359,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.InvalidatedCallback.html">DataSource.InvalidatedCallback</a>&nbsp;onInvalidatedCallback</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ExperimentalPagingApi.html b/testData/paging/docs/reference/androidx/paging/ExperimentalPagingApi.html
index ef8446b..6cca630 100644
--- a/testData/paging/docs/reference/androidx/paging/ExperimentalPagingApi.html
+++ b/testData/paging/docs/reference/androidx/paging/ExperimentalPagingApi.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/ExperimentalPagingApi.html#ExperimentalPagingApi()">ExperimentalPagingApi</a>()</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/InvalidatingPagingSourceFactory.html b/testData/paging/docs/reference/androidx/paging/InvalidatingPagingSourceFactory.html
index ea09682..3ed273a 100644
--- a/testData/paging/docs/reference/androidx/paging/InvalidatingPagingSourceFactory.html
+++ b/testData/paging/docs/reference/androidx/paging/InvalidatingPagingSourceFactory.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/InvalidatingPagingSourceFactory.html#InvalidatingPagingSourceFactory(kotlin.Function0)">InvalidatingPagingSourceFactory</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;&nbsp;pagingSourceFactory<br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;&nbsp;pagingSourceFactory</code></td>
               <td>
@@ -88,10 +88,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html
index 09ace7e..2641d9d 100644
--- a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html">ItemKeyedDataSource.LoadInitialCallback</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html#LoadCallback()">LoadCallback</a>()</code></div>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -117,10 +117,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html
index 191a41e..6175485 100644
--- a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html#LoadInitialCallback()">LoadInitialCallback</a>()</code></div>
@@ -70,10 +70,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -88,15 +88,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html">androidx.paging.ItemKeyedDataSource.LoadCallback</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract void</code></td>
                       <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -145,10 +145,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html
index e7cda63..0c807fe 100644
--- a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html
+++ b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html#LoadInitialParams(kotlin.Any,kotlin.Int,kotlin.Boolean)">LoadInitialParams</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;Key&nbsp;requestedInitialKey,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;requestedLoadSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;placeholdersEnabled<br>)</code></div>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html
index 6e2b845..762c491 100644
--- a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html
+++ b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html#LoadParams(kotlin.Any,kotlin.Int)">LoadParams</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&nbsp;key,&nbsp;int&nbsp;requestedLoadSize)</code></div>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.html b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.html
index d090623..21ce87d 100644
--- a/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.html
+++ b/testData/paging/docs/reference/androidx/paging/ItemKeyedDataSource.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.LoadCallback.html">ItemKeyedDataSource.LoadCallback</a></code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ItemKeyedDataSource.html#ItemKeyedDataSource()">ItemKeyedDataSource</a>()</code></div>
@@ -111,10 +111,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key</code></td>
             <td>
@@ -178,15 +178,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/AnyThread.html">AnyThread</a> void</code></td>
                       <td>
@@ -220,15 +220,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -251,10 +251,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&nbsp;item</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html">ItemKeyedDataSource.LoadParams</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&gt;&nbsp;params</code></td>
               <td>
@@ -356,10 +356,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadParams.html">ItemKeyedDataSource.LoadParams</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&gt;&nbsp;params</code></td>
               <td>
@@ -386,10 +386,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html">ItemKeyedDataSource.LoadInitialParams</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&gt;&nbsp;params</code></td>
               <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -455,10 +455,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -485,10 +485,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -508,10 +508,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -525,10 +525,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -550,10 +550,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -573,10 +573,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -590,10 +590,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -620,10 +620,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -643,10 +643,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -660,10 +660,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/ItemKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/ItemSnapshotList.html b/testData/paging/docs/reference/androidx/paging/ItemSnapshotList.html
index f7665a5..28545e4 100644
--- a/testData/paging/docs/reference/androidx/paging/ItemSnapshotList.html
+++ b/testData/paging/docs/reference/androidx/paging/ItemSnapshotList.html
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ItemSnapshotList.html#ItemSnapshotList(kotlin.Int,kotlin.Int,kotlin.collections.List)">ItemSnapshotList</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;placeholdersBefore,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;placeholdersAfter,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;items<br>)</code></div>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -113,15 +113,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-abstract-collection/index.html">kotlin.collections.AbstractCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -167,7 +167,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-abstract-list/index.html">kotlin.collections.AbstractList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -225,7 +225,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">kotlin.collections.Collection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/stream/Stream.html">Stream</a>&lt;T&gt;</code></td>
                       <td>
@@ -260,7 +260,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">kotlin.collections.Iterable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -300,10 +300,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/ItemSnapshotList.html#items()">items</a></code></td>
               <td></td>
@@ -327,10 +327,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-index-out-of-bounds-exception/index.html">kotlin.IndexOutOfBoundsException</a>&nbsp;kotlin.IndexOutOfBoundsException</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ListenableFuturePagingSource.html b/testData/paging/docs/reference/androidx/paging/ListenableFuturePagingSource.html
index 6cd328a..f54b066 100644
--- a/testData/paging/docs/reference/androidx/paging/ListenableFuturePagingSource.html
+++ b/testData/paging/docs/reference/androidx/paging/ListenableFuturePagingSource.html
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ListenableFuturePagingSource.html#ListenableFuturePagingSource()">ListenableFuturePagingSource</a>()</code></div>
@@ -92,10 +92,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.LoadResult.html">PagingSource.LoadResult</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
             <td>
@@ -117,15 +117,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract Key</code></td>
                       <td>
@@ -166,15 +166,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final boolean</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/ListenableFutureRemoteMediator.html b/testData/paging/docs/reference/androidx/paging/ListenableFutureRemoteMediator.html
index ef98b13..6bf115f 100644
--- a/testData/paging/docs/reference/androidx/paging/ListenableFutureRemoteMediator.html
+++ b/testData/paging/docs/reference/androidx/paging/ListenableFutureRemoteMediator.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/ListenableFutureRemoteMediator.html#ListenableFutureRemoteMediator()">ListenableFutureRemoteMediator</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/ListenableFuture.html">ListenableFuture</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a>&gt;</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/ListenableFuture.html">ListenableFuture</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/LivePagedListBuilder.html b/testData/paging/docs/reference/androidx/paging/LivePagedListBuilder.html
index 3f7cc1c..1e96bff 100644
--- a/testData/paging/docs/reference/androidx/paging/LivePagedListBuilder.html
+++ b/testData/paging/docs/reference/androidx/paging/LivePagedListBuilder.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.DataSource.Factory).toLiveData(androidx.paging.PagedList.Config,kotlin.Any,androidx.paging.PagedList.BoundaryCallback,java.util.concurrent.Executor)">toLiveData</a></code></td>
             <td></td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <span><del><a href="/reference/androidx/paging/LivePagedListBuilder.html#LivePagedListBuilder(androidx.paging.DataSource.Factory,androidx.paging.PagedList.Config)">LivePagedListBuilder</a></del></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;dataSourceFactory,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a>&nbsp;config<br>)</code></div>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;dataSourceFactory</code></td>
               <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;dataSourceFactory</code></td>
               <td>
@@ -203,10 +203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;&nbsp;pagingSourceFactory</code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;&nbsp;pagingSourceFactory</code></td>
               <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
               <td>
@@ -293,10 +293,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.BoundaryCallback.html">PagedList.BoundaryCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;boundaryCallback</code></td>
               <td>
@@ -310,10 +310,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -333,10 +333,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;coroutineScope</code></td>
               <td></td>
@@ -348,10 +348,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -372,10 +372,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html">Executor</a>&nbsp;fetchExecutor</code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -412,10 +412,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Key&nbsp;key</code></td>
               <td>
@@ -429,10 +429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/LivePagedListKt.html b/testData/paging/docs/reference/androidx/paging/LivePagedListKt.html
index 6aafa3a..ccbb407 100644
--- a/testData/paging/docs/reference/androidx/paging/LivePagedListKt.html
+++ b/testData/paging/docs/reference/androidx/paging/LivePagedListKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a>&nbsp;config</code></td>
               <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;pageSize</code></td>
               <td>
@@ -153,10 +153,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a>&nbsp;config</code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -239,10 +239,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;pageSize</code></td>
               <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadState.Error.html b/testData/paging/docs/reference/androidx/paging/LoadState.Error.html
index 6a5c36f..efd42ea 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadState.Error.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadState.Error.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#retry()">retry</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
             <td>
@@ -67,10 +67,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/LoadState.Error.html#Error(kotlin.Throwable)">Error</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a>&nbsp;error)</code></div>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -112,15 +112,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/LoadState.html">androidx.paging.LoadState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final boolean</code></td>
                       <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a>&nbsp;error</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadState.Loading.html b/testData/paging/docs/reference/androidx/paging/LoadState.Loading.html
index 729f275..e826a41 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadState.Loading.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadState.Loading.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static boolean</code></td>
             <td>
@@ -63,15 +63,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/LoadState.html">androidx.paging.LoadState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>static&nbsp;final boolean</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadState.NotLoading.html b/testData/paging/docs/reference/androidx/paging/LoadState.NotLoading.html
index 86c9b82..5cd7b01 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadState.NotLoading.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadState.NotLoading.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/LoadState.NotLoading.html#NotLoading(kotlin.Boolean)">NotLoading</a>(boolean&nbsp;endOfPaginationReached)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -79,15 +79,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/LoadState.html">androidx.paging.LoadState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final boolean</code></td>
                       <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;endOfPaginationReached</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadState.html b/testData/paging/docs/reference/androidx/paging/LoadState.html
index c0c33f3..4324e67 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadState.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/LoadState.Error.html">LoadState.Error</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/LoadType.html">LoadType</a></code></td>
             <td></td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/LoadState.Error.html">LoadState.Error</a></code></td>
             <td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -109,10 +109,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/LoadState.html#LoadState(kotlin.Boolean)">LoadState</a>(boolean&nbsp;endOfPaginationReached)</code></div>
@@ -135,10 +135,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;endOfPaginationReached</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadStateAdapter.html b/testData/paging/docs/reference/androidx/paging/LoadStateAdapter.html
index f0a7ff5..af6ae8e 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadStateAdapter.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadStateAdapter.html
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingDataAdapter.html#withLoadStateHeaderAndFooter(androidx.paging.LoadStateAdapter,androidx.paging.LoadStateAdapter)">withLoadStateHeaderAndFooter</a></code></td>
             <td></td>
@@ -102,10 +102,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td>
@@ -120,10 +120,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;VH&nbsp;extends&nbsp;<a href="/reference/androidx/recyclerview/widget/RecyclerView.ViewHolder.html">RecyclerView.ViewHolder</a>&gt; <a href="/reference/androidx/paging/LoadStateAdapter.html#LoadStateAdapter()">LoadStateAdapter</a>()</code></div>
@@ -136,10 +136,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>boolean</code></td>
             <td>
@@ -199,15 +199,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/recyclerview/widget/RecyclerView.Adapter.html">androidx.recyclerview.widget.RecyclerView.Adapter</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
@@ -429,10 +429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;loadState</code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LoadStateAdapter.html#getItemViewType(kotlin.Int)">getItemViewType</a></code></td>
               <td></td>
@@ -474,10 +474,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/android/view/ViewGroup.html">ViewGroup</a>&nbsp;parent</code></td>
               <td>
@@ -497,10 +497,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LoadStateAdapter.html#getItemViewType(kotlin.Int)">getItemViewType</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadStates.html b/testData/paging/docs/reference/androidx/paging/LoadStates.html
index 8d82bb2..0e416b3 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadStates.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadStates.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/LoadStates.html#LoadStates(androidx.paging.LoadState,androidx.paging.LoadState,androidx.paging.LoadState)">LoadStates</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;refresh,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;prepend,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>&nbsp;append<br>)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/LoadType.html b/testData/paging/docs/reference/androidx/paging/LoadType.html
index d610f80..b4d744c 100644
--- a/testData/paging/docs/reference/androidx/paging/LoadType.html
+++ b/testData/paging/docs/reference/androidx/paging/LoadType.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td></td>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/LoadType.html#APPEND">APPEND</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadCallback.html b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadCallback.html
index f89d1f6..f5c8d6b 100644
--- a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PageKeyedDataSource.LoadCallback.html#LoadCallback()">LoadCallback</a>()</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -79,10 +79,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html
index 09e9fe7..13a91e3 100644
--- a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html#LoadInitialCallback()">LoadInitialCallback</a>()</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -87,10 +87,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data</code></td>
               <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialParams.html b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialParams.html
index b1be5db..b9a8781 100644
--- a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialParams.html
+++ b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadInitialParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PageKeyedDataSource.LoadInitialParams.html#LoadInitialParams(kotlin.Int,kotlin.Boolean)">LoadInitialParams</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;requestedLoadSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;placeholdersEnabled<br>)</code></div>
@@ -90,10 +90,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadParams.html b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadParams.html
index 1689b8e..dcb04ce 100644
--- a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadParams.html
+++ b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.LoadParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key</code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PageKeyedDataSource.LoadParams.html#LoadParams(kotlin.Any,kotlin.Int)">LoadParams</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&nbsp;key,&nbsp;int&nbsp;requestedLoadSize)</code></div>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.html b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.html
index 099299d..f5320b3 100644
--- a/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.html
+++ b/testData/paging/docs/reference/androidx/paging/PageKeyedDataSource.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PageKeyedDataSource.LoadCallback.html">PageKeyedDataSource.LoadCallback</a></code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PageKeyedDataSource.html#PageKeyedDataSource()">PageKeyedDataSource</a>()</code></div>
@@ -111,10 +111,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -171,15 +171,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/AnyThread.html">AnyThread</a> void</code></td>
                       <td>
@@ -213,15 +213,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -244,10 +244,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -276,10 +276,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.LoadParams.html">PageKeyedDataSource.LoadParams</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&gt;&nbsp;params</code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.LoadParams.html">PageKeyedDataSource.LoadParams</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&gt;&nbsp;params</code></td>
               <td>
@@ -337,10 +337,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.LoadInitialParams.html">PageKeyedDataSource.LoadInitialParams</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&gt;&nbsp;params</code></td>
               <td>
@@ -366,10 +366,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -406,10 +406,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PageKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -436,10 +436,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -459,10 +459,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -476,10 +476,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PageKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -501,10 +501,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -524,10 +524,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -541,10 +541,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PageKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -571,10 +571,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -594,10 +594,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> ToValue&gt;</code></td>
               <td>
@@ -611,10 +611,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PageKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedList.BoundaryCallback.html b/testData/paging/docs/reference/androidx/paging/PagedList.BoundaryCallback.html
index dbbede0..9fdf54b 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedList.BoundaryCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedList.BoundaryCallback.html
@@ -26,10 +26,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -44,10 +44,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagedList.BoundaryCallback.html#BoundaryCallback()">BoundaryCallback</a>()</code></div>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;itemAtEnd</code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&nbsp;itemAtFront</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedList.Builder.html b/testData/paging/docs/reference/androidx/paging/PagedList.Builder.html
index 530b747..9e7e4b8 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedList.Builder.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedList.Builder.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -43,10 +43,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagedList.Builder.html#Builder(androidx.paging.DataSource,androidx.paging.PagedList.Config)">Builder</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.html">DataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;dataSource,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a>&nbsp;config<br>)</code></div>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
             <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.html">DataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;dataSource</code></td>
               <td>
@@ -180,10 +180,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/DataSource.html">DataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;dataSource</code></td>
               <td>
@@ -208,10 +208,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;pagingSource</code></td>
               <td>
@@ -244,10 +244,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;pagingSource</code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a>&nbsp;kotlin.IllegalArgumentException</code></td>
               <td>
@@ -322,10 +322,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.BoundaryCallback.html">PagedList.BoundaryCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;boundaryCallback</code></td>
               <td>
@@ -339,10 +339,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -363,10 +363,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;coroutineScope</code></td>
               <td></td>
@@ -378,10 +378,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -401,10 +401,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>&nbsp;fetchDispatcher</code></td>
               <td>
@@ -418,10 +418,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -442,10 +442,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html">Executor</a>&nbsp;fetchExecutor</code></td>
               <td>
@@ -459,10 +459,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -481,10 +481,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Key&nbsp;initialKey</code></td>
               <td>
@@ -498,10 +498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -520,10 +520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>&nbsp;notifyDispatcher</code></td>
               <td>
@@ -537,10 +537,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -560,10 +560,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html">Executor</a>&nbsp;notifyExecutor</code></td>
               <td>
@@ -577,10 +577,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedList.Callback.html b/testData/paging/docs/reference/androidx/paging/PagedList.Callback.html
index b14ab1d..7d15ba0 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedList.Callback.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedList.Callback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PagedList.Callback.html#Callback()">Callback</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;position</code></td>
               <td>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;position</code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;position</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedList.Config.Builder.html b/testData/paging/docs/reference/androidx/paging/PagedList.Config.Builder.html
index dad438a..30d167e 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedList.Config.Builder.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedList.Config.Builder.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PagedList.Config.Builder.html#Builder()">Builder</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a>&nbsp;kotlin.IllegalArgumentException</code></td>
               <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;enablePlaceholders</code></td>
               <td>
@@ -171,10 +171,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -195,10 +195,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;1) int&nbsp;initialLoadSizeHint</code></td>
               <td>
@@ -212,10 +212,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -246,10 +246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;2) int&nbsp;maxSize</code></td>
               <td>
@@ -263,10 +263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -280,10 +280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.Config.Companion.html#MAX_SIZE_UNBOUNDED()">MAX_SIZE_UNBOUNDED</a></code></td>
               <td></td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;1) int&nbsp;pageSize</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -341,10 +341,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a>&nbsp;kotlin.IllegalArgumentException</code></td>
               <td>
@@ -366,10 +366,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;prefetchDistance</code></td>
               <td>
@@ -383,10 +383,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedList.Config.html b/testData/paging/docs/reference/androidx/paging/PagedList.Config.html
index 9ceff54..eab00a0 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedList.Config.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedList.Config.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.Config.Companion.html#MAX_SIZE_UNBOUNDED()">MAX_SIZE_UNBOUNDED</a></code></td>
               <td></td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#loadAround(kotlin.Int)">loadAround</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedList.html b/testData/paging/docs/reference/androidx/paging/PagedList.html
index d0fbc77..a337827 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedList.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedList.html
@@ -77,10 +77,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/MainThread.html">MainThread</a><a href="/reference/androidx/paging/PagedList.BoundaryCallback.html">PagedList.BoundaryCallback</a></code></td>
             <td>
@@ -136,10 +136,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
             <td>
@@ -203,10 +203,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -284,15 +284,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/AbstractCollection.html">java.util.AbstractCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -362,7 +362,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/AbstractList.html">java.util.AbstractList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -462,7 +462,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">kotlin.collections.Collection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/stream/Stream.html">Stream</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
                       <td>
@@ -497,7 +497,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">kotlin.collections.Iterable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -513,7 +513,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html">kotlin.collections.MutableCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -529,7 +529,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">kotlin.collections.MutableList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>void</code></td>
                       <td>
@@ -554,15 +554,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/AbstractList.html">java.util.AbstractList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
@@ -586,10 +586,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -608,10 +608,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a>&nbsp;kotlin.IllegalStateException</code></td>
               <td>
@@ -631,10 +631,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -655,10 +655,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -678,10 +678,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/lang/Object.html">Object</a></code></td>
               <td>
@@ -702,10 +702,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int</code></td>
               <td>
@@ -719,10 +719,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#size()">size</a></code></td>
               <td></td>
@@ -747,10 +747,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#loadedCount()">loadedCount</a></code></td>
               <td></td>
@@ -772,10 +772,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;previousSnapshot</code></td>
               <td>
@@ -795,10 +795,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#removeWeakCallback(androidx.paging.PagedList.Callback)">removeWeakCallback</a></code></td>
               <td></td>
@@ -816,10 +816,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Callback.html">PagedList.Callback</a>&nbsp;callback</code></td>
               <td>
@@ -833,10 +833,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#removeWeakCallback(androidx.paging.PagedList.Callback)">removeWeakCallback</a></code></td>
               <td></td>
@@ -853,10 +853,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -870,10 +870,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#removeWeakLoadStateListener(kotlin.Function2)">removeWeakLoadStateListener</a></code></td>
               <td></td>
@@ -896,10 +896,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;index</code></td>
               <td>
@@ -913,10 +913,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -930,10 +930,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#size()">size</a></code></td>
               <td></td>
@@ -950,10 +950,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;index</code></td>
               <td>
@@ -967,10 +967,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-index-out-of-bounds-exception/index.html">kotlin.IndexOutOfBoundsException</a>&nbsp;kotlin.IndexOutOfBoundsException</code></td>
               <td>
@@ -989,10 +989,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagedList.Callback.html">PagedList.Callback</a>&nbsp;callback</code></td>
               <td>
@@ -1006,10 +1006,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#addWeakCallback(kotlin.collections.List,androidx.paging.PagedList.Callback)">addWeakCallback</a></code></td>
               <td></td>
@@ -1026,10 +1026,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -1043,10 +1043,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#addWeakLoadStateListener(kotlin.Function2)">addWeakLoadStateListener</a></code></td>
               <td></td>
@@ -1065,10 +1065,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html#addWeakLoadStateListener(kotlin.Function2)">addWeakLoadStateListener</a></code></td>
               <td></td>
@@ -1090,10 +1090,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagedListAdapter.html b/testData/paging/docs/reference/androidx/paging/PagedListAdapter.html
index f7bd982..8e8d14d 100644
--- a/testData/paging/docs/reference/androidx/paging/PagedListAdapter.html
+++ b/testData/paging/docs/reference/androidx/paging/PagedListAdapter.html
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -83,10 +83,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;VH&nbsp;extends&nbsp;<a href="/reference/androidx/recyclerview/widget/RecyclerView.ViewHolder.html">RecyclerView.ViewHolder</a>&gt; <a href="/reference/androidx/paging/PagedListAdapter.html#PagedListAdapter(androidx.recyclerview.widget.DiffUtil.ItemCallback)">PagedListAdapter</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;diffCallback<br>)</code></div>
@@ -105,10 +105,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>void</code></td>
             <td>
@@ -185,10 +185,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T</code></td>
             <td>
@@ -202,15 +202,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/recyclerview/widget/RecyclerView.Adapter.html">androidx.recyclerview.widget.RecyclerView.Adapter</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
               <td>
@@ -432,10 +432,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedListAdapter.html#onCurrentListChanged(androidx.paging.PagedList)">onCurrentListChanged</a></code></td>
               <td></td>
@@ -454,10 +454,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;diffCallback</code></td>
               <td>
@@ -482,10 +482,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -499,10 +499,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedListAdapter.html#removeLoadStateListener(kotlin.Function2)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -526,10 +526,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;currentList</code></td>
               <td>
@@ -543,10 +543,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedListAdapter.html#onCurrentListChanged(androidx.paging.PagedList)">onCurrentListChanged</a></code></td>
               <td></td>
@@ -565,10 +565,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;previousList</code></td>
               <td>
@@ -588,10 +588,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedListAdapter.html#onCurrentListChanged(androidx.paging.PagedList,androidx.paging.PagedList)">onCurrentListChanged</a></code></td>
               <td></td>
@@ -608,10 +608,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadState.html">LoadState</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -625,10 +625,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedListAdapter.html#addLoadStateListener(kotlin.Function2)">addLoadStateListener</a></code></td>
               <td></td>
@@ -646,10 +646,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;pagedList</code></td>
               <td>
@@ -670,10 +670,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagedList.html">PagedList</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;pagedList</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/Pager.html b/testData/paging/docs/reference/androidx/paging/Pager.html
index ee6de5b..0da8f39 100644
--- a/testData/paging/docs/reference/androidx/paging/Pager.html
+++ b/testData/paging/docs/reference/androidx/paging/Pager.html
@@ -21,10 +21,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/Pager.html#Pager(androidx.paging.PagingConfig,kotlin.Any,kotlin.Function0)">Pager</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingConfig.html">PagingConfig</a>&nbsp;config,<br>&nbsp;&nbsp;&nbsp;&nbsp;Key&nbsp;initialKey,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.html">PagingSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;&nbsp;pagingSourceFactory<br>)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingConfig.html b/testData/paging/docs/reference/androidx/paging/PagingConfig.html
index ce9a560..1e26ce8 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingConfig.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingConfig.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingConfig.Companion.html">PagingConfig.Companion</a></code></td>
             <td></td>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -102,10 +102,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PagingConfig.html#PagingConfig(kotlin.Int,kotlin.Int,kotlin.Boolean,kotlin.Int,kotlin.Int,kotlin.Int)">PagingConfig</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;pageSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;prefetchDistance,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;enablePlaceholders,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;1) int&nbsp;initialLoadSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;2) int&nbsp;maxSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;jumpThreshold<br>)</code></div>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.html#getRefreshKey(androidx.paging.PagingState)">getRefreshKey</a></code></td>
               <td></td>
@@ -187,10 +187,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingConfig.Companion.html#MAX_SIZE_UNBOUNDED()">MAX_SIZE_UNBOUNDED</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingData.Companion.html b/testData/paging/docs/reference/androidx/paging/PagingData.Companion.html
index 92de255..3cc703f 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingData.Companion.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingData.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -64,10 +64,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadStates.html">LoadStates</a>&nbsp;sourceLoadStates</code></td>
               <td>
@@ -92,10 +92,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingData.html b/testData/paging/docs/reference/androidx/paging/PagingData.html
index e23e130..cb1a0d6 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingData.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingData.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingData.Companion.html">PagingData.Companion</a></code></td>
             <td></td>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadStates.html">LoadStates</a>&nbsp;sourceLoadStates</code></td>
               <td>
@@ -246,10 +246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
@@ -303,10 +303,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;predicate</code></td>
               <td>
@@ -331,10 +331,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Iterable.html">Iterable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;&gt;&nbsp;transform</code></td>
               <td>
@@ -439,10 +439,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/AdjacentItems.html">AdjacentItems</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;R&gt;&nbsp;generator</code></td>
               <td>
@@ -467,10 +467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;&nbsp;transform</code></td>
               <td>
@@ -507,10 +507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a>&nbsp;terminalSeparatorType</code></td>
               <td>
@@ -530,10 +530,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertHeaderItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertHeaderItem</a></code></td>
               <td></td>
@@ -552,10 +552,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a>&nbsp;terminalSeparatorType</code></td>
               <td>
@@ -575,10 +575,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertFooterItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertFooterItem</a></code></td>
               <td></td>
@@ -679,10 +679,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a>&nbsp;terminalSeparatorType</code></td>
               <td>
@@ -713,10 +713,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.PagingData).map(kotlin.coroutines.SuspendFunction1)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingDataAdapter.html b/testData/paging/docs/reference/androidx/paging/PagingDataAdapter.html
index fbb2510..76f5025 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingDataAdapter.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingDataAdapter.html
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>&gt;</code></td>
             <td>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;VH&nbsp;extends&nbsp;<a href="/reference/androidx/recyclerview/widget/RecyclerView.ViewHolder.html">RecyclerView.ViewHolder</a>&gt; <a href="/reference/androidx/paging/PagingDataAdapter.html#PagingDataAdapter(androidx.recyclerview.widget.DiffUtil.ItemCallback,kotlinx.coroutines.CoroutineDispatcher,kotlinx.coroutines.CoroutineDispatcher)">PagingDataAdapter</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;diffCallback,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>&nbsp;mainDispatcher,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>&nbsp;workerDispatcher<br>)</code></div>
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -208,10 +208,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected methods</h3></th>
+            <th colspan="100%"><h3>Protected methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final T</code></td>
             <td>
@@ -226,15 +226,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/recyclerview/widget/RecyclerView.Adapter.html">androidx.recyclerview.widget.RecyclerView.Adapter</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
@@ -444,10 +444,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -461,10 +461,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingDataAdapter.html#removeLoadStateListener(kotlin.Function1)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -491,10 +491,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;index</code></td>
               <td>
@@ -508,10 +508,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
@@ -551,10 +551,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.html#invalidate()">invalidate</a></code></td>
               <td></td>
@@ -571,10 +571,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;listener</code></td>
               <td>
@@ -588,10 +588,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingDataAdapter.html#addLoadStateListener(kotlin.Function1)">addLoadStateListener</a></code></td>
               <td></td>
@@ -623,10 +623,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean&nbsp;hasStableIds</code></td>
               <td>
@@ -640,10 +640,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unsupported-operation-exception/index.html">kotlin.UnsupportedOperationException</a>&nbsp;kotlin.UnsupportedOperationException</code></td>
               <td>
@@ -694,10 +694,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/Pager.html">Pager</a></code></td>
               <td></td>
@@ -748,10 +748,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingDataAdapter.html#submitData(androidx.paging.PagingData)">submitData</a></code></td>
               <td></td>
@@ -772,10 +772,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LoadStateAdapter.html">LoadStateAdapter</a></code></td>
               <td></td>
@@ -800,10 +800,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LoadStateAdapter.html">LoadStateAdapter</a></code></td>
               <td></td>
@@ -828,10 +828,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/LoadStateAdapter.html">LoadStateAdapter</a></code></td>
               <td></td>
@@ -857,10 +857,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;position</code></td>
               <td>
@@ -874,10 +874,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingDataFutures.html b/testData/paging/docs/reference/androidx/paging/PagingDataFutures.html
index 96b525f..452c5b8 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingDataFutures.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingDataFutures.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PagingDataFutures.html#PagingDataFutures()">PagingDataFutures</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Boolean.html">Boolean</a>&gt;&nbsp;predicate</code></td>
               <td>
@@ -108,10 +108,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Iterable.html">Iterable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;&gt;&nbsp;transform</code></td>
               <td>
@@ -216,10 +216,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/AdjacentItems.html">AdjacentItems</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;R&gt;&nbsp;generator</code></td>
               <td>
@@ -244,10 +244,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;&nbsp;transform</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingDataTransforms.html b/testData/paging/docs/reference/androidx/paging/PagingDataTransforms.html
index a10ffa1..cb83c26 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingDataTransforms.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingDataTransforms.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PagingDataTransforms.html#PagingDataTransforms()">PagingDataTransforms</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;</code></td>
             <td>
@@ -106,10 +106,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a>&nbsp;terminalSeparatorType</code></td>
               <td>
@@ -129,10 +129,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertHeaderItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertHeaderItem</a></code></td>
               <td></td>
@@ -151,10 +151,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a>&nbsp;terminalSeparatorType</code></td>
               <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertFooterItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertFooterItem</a></code></td>
               <td></td>
@@ -278,10 +278,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a>&nbsp;terminalSeparatorType</code></td>
               <td>
@@ -312,10 +312,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/package-summary.html#(androidx.paging.PagingData).map(kotlin.coroutines.SuspendFunction1)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingLiveData.html b/testData/paging/docs/reference/androidx/paging/PagingLiveData.html
index 3e4d764..e6a2999 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingLiveData.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingLiveData.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PagingLiveData.html#PagingLiveData()">PagingLiveData</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/LiveData.html">LiveData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&gt;</code></td>
             <td>
@@ -99,10 +99,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/Lifecycle.html">Lifecycle</a>&nbsp;lifecycle</code></td>
               <td>
@@ -123,10 +123,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/lifecycle/ViewModel.html">ViewModel</a>&nbsp;viewModel</code></td>
               <td>
@@ -147,10 +147,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;scope</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Append.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Append.html
index 013baa5..69dc27d 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Append.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Append.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadParams.Append.html#Append(kotlin.Any,kotlin.Int,kotlin.Boolean)">Append</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&nbsp;key,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;loadSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;placeholdersEnabled<br>)</code></div>
@@ -68,15 +68,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.LoadParams.html">androidx.paging.PagingSource.LoadParams</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Prepend.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Prepend.html
index 514ee80..828ec40 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Prepend.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Prepend.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadParams.Prepend.html#Prepend(kotlin.Any,kotlin.Int,kotlin.Boolean)">Prepend</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key&nbsp;key,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;loadSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;placeholdersEnabled<br>)</code></div>
@@ -68,15 +68,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.LoadParams.html">androidx.paging.PagingSource.LoadParams</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Refresh.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Refresh.html
index ad87f52..c097c97 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Refresh.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.Refresh.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>Key</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadParams.Refresh.html#Refresh(kotlin.Any,kotlin.Int,kotlin.Boolean)">Refresh</a>(Key&nbsp;key,&nbsp;int&nbsp;loadSize,&nbsp;boolean&nbsp;placeholdersEnabled)</code></div>
@@ -68,15 +68,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.LoadParams.html">androidx.paging.PagingSource.LoadParams</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final int</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.html
index a9e58ff..ccebe4c 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadParams.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadParams.Append.html">PagingSource.LoadParams.Append</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadParams.Append.html">PagingSource.LoadParams.Append</a></code></td>
             <td>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract Key</code></td>
             <td>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadParams.html#LoadParams(kotlin.Int,kotlin.Boolean)">LoadParams</a>(int&nbsp;loadSize,&nbsp;boolean&nbsp;placeholdersEnabled)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Error.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Error.html
index c571142..69c5cf2 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Error.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Error.html
@@ -86,10 +86,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
             <td>
@@ -103,10 +103,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadResult.Error.html#Error(kotlin.Throwable)">Error</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a>&nbsp;throwable)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Invalid.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Invalid.html
index 3749a06..ada6e7e 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Invalid.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Invalid.html
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadResult.Invalid.html#Invalid()">Invalid</a>()</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Page.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Page.html
index 5ce444f..0c3ed10 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Page.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.Page.html
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadResult.Page.Companion.html">PagingSource.LoadResult.Page.Companion</a></code></td>
             <td></td>
@@ -84,10 +84,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final int</code></td>
             <td>
@@ -101,10 +101,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
             <td>
@@ -147,10 +147,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadResult.Page.html#Page(kotlin.collections.List,kotlin.Any,kotlin.Any)">Page</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data,<br>&nbsp;&nbsp;&nbsp;&nbsp;Key&nbsp;prevKey,<br>&nbsp;&nbsp;&nbsp;&nbsp;Key&nbsp;nextKey<br>)</code></div>
@@ -205,10 +205,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.html b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.html
index 1969d65..6446ebd 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.LoadResult.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadResult.Error.html">PagingSource.LoadResult.Error</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadResult.Error.html">PagingSource.LoadResult.Error</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.LoadResult.html#LoadResult()">LoadResult</a>()</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingSource.html b/testData/paging/docs/reference/androidx/paging/PagingSource.html
index fd38b61..1fb077c 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingSource.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingSource.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/ListenableFuturePagingSource.html">ListenableFuturePagingSource</a></code></td>
                 <td>
@@ -138,10 +138,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -161,10 +161,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/Pager.html">Pager</a></code></td>
             <td></td>
@@ -177,10 +177,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadParams.html">PagingSource.LoadParams</a></code></td>
             <td>
@@ -240,10 +240,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -272,10 +272,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingSource.html#PagingSource()">PagingSource</a>()</code></div>
@@ -288,10 +288,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract Key</code></td>
             <td>
@@ -347,10 +347,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingConfig.html#jumpThreshold()">jumpThreshold</a></code></td>
               <td></td>
@@ -372,10 +372,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -404,10 +404,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingState.html">PagingState</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&nbsp;state</code></td>
               <td>
@@ -421,10 +421,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Key</code></td>
               <td>
@@ -458,10 +458,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onInvalidatedCallback</code></td>
               <td>
@@ -480,10 +480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a>&gt;&nbsp;onInvalidatedCallback</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PagingState.html b/testData/paging/docs/reference/androidx/paging/PagingState.html
index da426e2..7e683e9 100644
--- a/testData/paging/docs/reference/androidx/paging/PagingState.html
+++ b/testData/paging/docs/reference/androidx/paging/PagingState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a></code></td>
             <td>
@@ -48,10 +48,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PagingState.html#PagingState(kotlin.collections.List,kotlin.Int,androidx.paging.PagingConfig,kotlin.Int)">PagingState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.LoadResult.Page.html">PagingSource.LoadResult.Page</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;&nbsp;pages,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>&nbsp;anchorPosition,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingConfig.html">PagingConfig</a>&nbsp;config,<br>&nbsp;&nbsp;&nbsp;&nbsp;@<a href="/reference/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) int&nbsp;leadingPlaceholderCount<br>)</code></div>
@@ -64,10 +64,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final Value</code></td>
             <td>
@@ -153,10 +153,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;anchorPosition</code></td>
               <td>
@@ -170,10 +170,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Value</code></td>
               <td>
@@ -193,10 +193,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;anchorPosition</code></td>
               <td>
@@ -210,10 +210,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PagingSource.LoadResult.Page.html">PagingSource.LoadResult.Page</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
               <td>
@@ -235,10 +235,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Value</code></td>
               <td>
@@ -260,10 +260,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boolean</code></td>
               <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Value</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialCallback.html b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialCallback.html
index eeceb90..5718dec 100644
--- a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PositionalDataSource.LoadInitialCallback.html#LoadInitialCallback()">LoadInitialCallback</a>()</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
@@ -140,10 +140,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialParams.html b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialParams.html
index 46c29b4..201efa2 100644
--- a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialParams.html
+++ b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadInitialParams.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PositionalDataSource.LoadInitialParams.html#LoadInitialParams(kotlin.Int,kotlin.Int,kotlin.Int,kotlin.Boolean)">LoadInitialParams</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;requestedStartPosition,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;requestedLoadSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;pageSize,<br>&nbsp;&nbsp;&nbsp;&nbsp;boolean&nbsp;placeholdersEnabled<br>)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeCallback.html b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeCallback.html
index 88e9550..c1f1c61 100644
--- a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeCallback.html
+++ b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PositionalDataSource.LoadRangeCallback.html#LoadRangeCallback()">LoadRangeCallback</a>()</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&nbsp;data</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeParams.html b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeParams.html
index e0a9eff..4f7cec1 100644
--- a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeParams.html
+++ b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.LoadRangeParams.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/PositionalDataSource.LoadRangeParams.html#LoadRangeParams(kotlin.Int,kotlin.Int)">LoadRangeParams</a>(int&nbsp;startPosition,&nbsp;int&nbsp;loadSize)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.html b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.html
index b19d619..7d376b6 100644
--- a/testData/paging/docs/reference/androidx/paging/PositionalDataSource.html
+++ b/testData/paging/docs/reference/androidx/paging/PositionalDataSource.html
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/PositionalDataSource.LoadInitialCallback.html">PositionalDataSource.LoadInitialCallback</a></code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/PositionalDataSource.html#PositionalDataSource()">PositionalDataSource</a>()</code></div>
@@ -106,10 +106,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/WorkerThread.html">WorkerThread</a> void</code></td>
             <td>
@@ -159,15 +159,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>@<a href="/reference/androidx/annotation/AnyThread.html">AnyThread</a> void</code></td>
                       <td>
@@ -201,15 +201,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>boolean</code></td>
                       <td>
@@ -232,10 +232,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt;</code></td>
               <td>
@@ -257,10 +257,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PositionalDataSource.LoadInitialParams.html">PositionalDataSource.LoadInitialParams</a>&nbsp;params</code></td>
               <td>
@@ -287,10 +287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PositionalDataSource.LoadRangeParams.html">PositionalDataSource.LoadRangeParams</a>&nbsp;params</code></td>
               <td>
@@ -316,10 +316,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/arch/core/util/Function.html">Function</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;function</code></td>
               <td>
@@ -333,10 +333,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -350,10 +350,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PositionalDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -380,10 +380,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&nbsp;function</code></td>
               <td>
@@ -397,10 +397,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -414,10 +414,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PositionalDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -439,10 +439,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/arch/core/util/Function.html">Function</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&gt;&nbsp;function</code></td>
               <td>
@@ -456,10 +456,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -473,10 +473,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PositionalDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -503,10 +503,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function1&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;&gt;&nbsp;function</code></td>
               <td>
@@ -520,10 +520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> V&gt;</code></td>
               <td>
@@ -537,10 +537,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/androidx/paging/PositionalDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/RemoteMediator.InitializeAction.html b/testData/paging/docs/reference/androidx/paging/RemoteMediator.InitializeAction.html
index 1240888..fbbf31a 100644
--- a/testData/paging/docs/reference/androidx/paging/RemoteMediator.InitializeAction.html
+++ b/testData/paging/docs/reference/androidx/paging/RemoteMediator.InitializeAction.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html#LAUNCH_INITIAL_REFRESH">LAUNCH_INITIAL_REFRESH</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html b/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html
index 40d10b5..e3ac03c 100644
--- a/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html
+++ b/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a></code></td>
             <td>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html#Error(kotlin.Throwable)">Error</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Throwable.html">Throwable</a>&nbsp;throwable)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Success.html b/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Success.html
index daf72ed..e74a3b0 100644
--- a/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Success.html
+++ b/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.Success.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final boolean</code></td>
             <td>
@@ -52,10 +52,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/RemoteMediator.MediatorResult.Success.html#Success(kotlin.Boolean)">Success</a>(boolean&nbsp;endOfPaginationReached)</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.html b/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.html
index ffbc494..3c4a3b5 100644
--- a/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.html
+++ b/testData/paging/docs/reference/androidx/paging/RemoteMediator.MediatorResult.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html">RemoteMediator.MediatorResult.Error</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/RemoteMediator.MediatorResult.Error.html">RemoteMediator.MediatorResult.Error</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html#MediatorResult()">MediatorResult</a>()</code></div>
diff --git a/testData/paging/docs/reference/androidx/paging/RemoteMediator.html b/testData/paging/docs/reference/androidx/paging/RemoteMediator.html
index 80b3de5..048afe8 100644
--- a/testData/paging/docs/reference/androidx/paging/RemoteMediator.html
+++ b/testData/paging/docs/reference/androidx/paging/RemoteMediator.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/androidx/paging/ListenableFutureRemoteMediator.html">ListenableFutureRemoteMediator</a></code></td>
                 <td>
@@ -238,10 +238,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -273,10 +273,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/RemoteMediator.html#RemoteMediator()">RemoteMediator</a>()</code></div>
@@ -289,10 +289,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -325,10 +325,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -369,10 +369,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -411,10 +411,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/TerminalSeparatorType.html b/testData/paging/docs/reference/androidx/paging/TerminalSeparatorType.html
index 24d510d..590c410 100644
--- a/testData/paging/docs/reference/androidx/paging/TerminalSeparatorType.html
+++ b/testData/paging/docs/reference/androidx/paging/TerminalSeparatorType.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/TerminalSeparatorType.html#FULLY_COMPLETE">FULLY_COMPLETE</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/package-summary.html b/testData/paging/docs/reference/androidx/paging/package-summary.html
index 5ff09f4..50bd3c3 100644
--- a/testData/paging/docs/reference/androidx/paging/package-summary.html
+++ b/testData/paging/docs/reference/androidx/paging/package-summary.html
@@ -18,7 +18,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/ExperimentalPagingApi.html">ExperimentalPagingApi</a></code></td>
             <td>
@@ -31,7 +31,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a></code></td>
             <td>
@@ -50,7 +50,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/AdjacentItems.html">AdjacentItems</a></code></td>
             <td>
@@ -413,7 +413,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/LoadType.html">LoadType</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava2/PagingRx.html b/testData/paging/docs/reference/androidx/paging/rxjava2/PagingRx.html
index 889fca0..2882c05 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava2/PagingRx.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava2/PagingRx.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/Flowable.html">Flowable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/rxjava2/PagingRx.html#PagingRx()">PagingRx</a>()</code></div>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-experimental-coroutines-api/index.html">ExperimentalCoroutinesApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/Observable.html">Observable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&gt;</code></td>
             <td>
@@ -132,10 +132,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;scope</code></td>
               <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;scope</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava2/RxPagingSource.html b/testData/paging/docs/reference/androidx/paging/rxjava2/RxPagingSource.html
index 1b3b69e..99c67b6 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava2/RxPagingSource.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava2/RxPagingSource.html
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/rxjava2/RxPagingSource.html#RxPagingSource()">RxPagingSource</a>()</code></div>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.LoadResult.html">PagingSource.LoadResult</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
             <td>
@@ -112,15 +112,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract Key</code></td>
                       <td>
@@ -161,15 +161,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final boolean</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava2/RxRemoteMediator.html b/testData/paging/docs/reference/androidx/paging/rxjava2/RxRemoteMediator.html
index 1634c72..6b8572c 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava2/RxRemoteMediator.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava2/RxRemoteMediator.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/rxjava2/RxRemoteMediator.html#RxRemoteMediator()">RxRemoteMediator</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/Single.html">Single</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a>&gt;</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/Single.html">Single</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava2/package-summary.html b/testData/paging/docs/reference/androidx/paging/rxjava2/package-summary.html
index 5f8cc3e..8a5125c 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava2/package-summary.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava2/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/rxjava2/PagingRx.html">PagingRx</a></code></td>
             <td></td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava3/PagingRx.html b/testData/paging/docs/reference/androidx/paging/rxjava3/PagingRx.html
index 4c62db6..37c517a 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava3/PagingRx.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava3/PagingRx.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/rxjava3/core/Flowable.html">Flowable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/paging/rxjava3/PagingRx.html#PagingRx()">PagingRx</a>()</code></div>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-experimental-coroutines-api/index.html">ExperimentalCoroutinesApi</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/rxjava3/core/Observable.html">Observable</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingData.html">PagingData</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T&gt;&gt;</code></td>
             <td>
@@ -132,10 +132,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;scope</code></td>
               <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a>&nbsp;scope</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava3/RxPagingSource.html b/testData/paging/docs/reference/androidx/paging/rxjava3/RxPagingSource.html
index 0da97e2..4bd6a7b 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava3/RxPagingSource.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava3/RxPagingSource.html
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/rxjava3/RxPagingSource.html#RxPagingSource()">RxPagingSource</a>()</code></div>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/PagingSource.LoadResult.html">PagingSource.LoadResult</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Key,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Value&gt;</code></td>
             <td>
@@ -112,15 +112,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract Key</code></td>
                       <td>
@@ -161,15 +161,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited fields</h3></th>
+            <th colspan="100%"><h3>Inherited fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final boolean</code></td>
                       <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava3/RxRemoteMediator.html b/testData/paging/docs/reference/androidx/paging/rxjava3/RxRemoteMediator.html
index 63ac92c..ee94be6 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava3/RxRemoteMediator.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava3/RxRemoteMediator.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>,&nbsp;Value&nbsp;extends&nbsp;<a href="https://developer.android.com/reference/java/lang/Object.html">Object</a>&gt; <a href="/reference/androidx/paging/rxjava3/RxRemoteMediator.html#RxRemoteMediator()">RxRemoteMediator</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/rxjava3/core/Single.html">Single</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a>&gt;</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/LoadType.html">LoadType</a>&nbsp;loadType</code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/io/reactivex/rxjava3/core/Single.html">Single</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/androidx/paging/rxjava3/package-summary.html b/testData/paging/docs/reference/androidx/paging/rxjava3/package-summary.html
index 55a5002..bf1bbcb 100644
--- a/testData/paging/docs/reference/androidx/paging/rxjava3/package-summary.html
+++ b/testData/paging/docs/reference/androidx/paging/rxjava3/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/paging/rxjava3/PagingRx.html">PagingRx</a></code></td>
             <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/classes.html b/testData/paging/docs/reference/kotlin/androidx/classes.html
index 7634739..4e36c11 100644
--- a/testData/paging/docs/reference/kotlin/androidx/classes.html
+++ b/testData/paging/docs/reference/kotlin/androidx/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_A">A</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AdjacentItems.html">AdjacentItems</a></code></td>
             <td>
@@ -42,7 +42,7 @@
     <h2 id="letter_C">C</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/CachedPagingDataKt.html">CachedPagingDataKt</a></code></td>
             <td></td>
@@ -59,7 +59,7 @@
     <h2 id="letter_D">D</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a></code></td>
             <td>
@@ -84,7 +84,7 @@
     <h2 id="letter_E">E</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ExperimentalPagingApi.html">ExperimentalPagingApi</a></code></td>
             <td>
@@ -97,7 +97,7 @@
     <h2 id="letter_I">I</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/InvalidatingPagingSourceFactory.html">InvalidatingPagingSourceFactory</a></code></td>
             <td>
@@ -146,7 +146,7 @@
     <h2 id="letter_L">L</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html">ListenableFuturePagingSource</a></code></td>
             <td>
@@ -217,7 +217,7 @@
     <h2 id="letter_P">P</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a></code></td>
             <td>
@@ -442,7 +442,7 @@
     <h2 id="letter_R">R</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.html">RemoteMediator</a></code></td>
             <td>
@@ -503,7 +503,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/packages.html b/testData/paging/docs/reference/kotlin/androidx/packages.html
index 96bbc2e..576afd3 100644
--- a/testData/paging/docs/reference/kotlin/androidx/packages.html
+++ b/testData/paging/docs/reference/kotlin/androidx/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/androidx/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html">androidx.paging</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/AdjacentItems.html b/testData/paging/docs/reference/kotlin/androidx/paging/AdjacentItems.html
index 40f6ec0..cb564da 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/AdjacentItems.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/AdjacentItems.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/AdjacentItems.html#AdjacentItems(kotlin.Any,kotlin.Any)">AdjacentItems</a>(before:&nbsp;T?,&nbsp;after:&nbsp;T?)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T?</code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html b/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html
index 653948e..78d1a75 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -57,10 +57,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>previousList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html b/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html
index 7e2a1b1..20b8e6f 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html
@@ -21,10 +21,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a></code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <span><del><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#AsyncPagedListDiffer(androidx.recyclerview.widget.RecyclerView.Adapter,androidx.recyclerview.widget.DiffUtil.ItemCallback)">AsyncPagedListDiffer</a></del></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;adapter:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.Adapter.html">RecyclerView.Adapter</a>&lt;*&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;diffCallback:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;T&gt;<br>)</code></div>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -152,10 +152,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
             <td>
@@ -184,10 +184,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>adapter:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.Adapter.html">RecyclerView.Adapter</a>&lt;*&gt;</code></td>
               <td>
@@ -219,10 +219,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a>, <a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#removeLoadStateListener(kotlin.Function2)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -256,10 +256,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;<a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a>&lt;T&gt;</code></td>
               <td>
@@ -273,10 +273,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -297,10 +297,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;(<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?, <a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -314,10 +314,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -339,10 +339,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -356,10 +356,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T?</code></td>
               <td>
@@ -373,10 +373,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IndexOutOfBoundsException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-index-out-of-bounds-exception/index.html">kotlin.IndexOutOfBoundsException</a></code></td>
               <td>
@@ -395,10 +395,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a>, <a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -412,10 +412,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -436,10 +436,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;<a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a>&lt;T&gt;</code></td>
               <td>
@@ -453,10 +453,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -477,10 +477,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;(<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?, <a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -494,10 +494,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.html#currentList()">currentList</a></code></td>
               <td></td>
@@ -519,10 +519,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagedList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -543,10 +543,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagedList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -566,10 +566,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalStateException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a></code></td>
               <td>
@@ -590,10 +590,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -612,10 +612,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html b/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html
index 0221b85..7d95650 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html#AsyncPagingDataDiffer(androidx.recyclerview.widget.DiffUtil.ItemCallback,androidx.recyclerview.widget.ListUpdateCallback,kotlinx.coroutines.CoroutineDispatcher,kotlinx.coroutines.CoroutineDispatcher)">AsyncPagingDataDiffer</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;diffCallback:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;updateCallback:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/ListUpdateCallback.html">ListUpdateCallback</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;mainDispatcher:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;workerDispatcher:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a><br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -121,10 +121,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -192,10 +192,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html#removeLoadStateListener(kotlin.Function1)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -224,10 +224,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -241,10 +241,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html#removeOnPagesUpdatedListener(kotlin.Function0)">removeOnPagesUpdatedListener</a></code></td>
               <td></td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -279,10 +279,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T?</code></td>
               <td>
@@ -301,10 +301,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -318,10 +318,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T?</code></td>
               <td>
@@ -361,10 +361,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.html#invalidate()">invalidate</a></code></td>
               <td></td>
@@ -381,10 +381,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -398,10 +398,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html#addLoadStateListener(kotlin.Function1)">addLoadStateListener</a></code></td>
               <td></td>
@@ -418,10 +418,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -435,10 +435,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html#addOnPagesUpdatedListener(kotlin.Function0)">addOnPagesUpdatedListener</a></code></td>
               <td></td>
@@ -477,10 +477,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/Pager.html">Pager</a></code></td>
               <td></td>
@@ -498,10 +498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagingDataDiffer.html#submitData(androidx.paging.PagingData)">submitData</a></code></td>
               <td></td>
@@ -523,10 +523,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/CombinedLoadStates.html b/testData/paging/docs/reference/kotlin/androidx/paging/CombinedLoadStates.html
index 8629737..7f811c9 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/CombinedLoadStates.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/CombinedLoadStates.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/CombinedLoadStates.html#CombinedLoadStates(androidx.paging.LoadState,androidx.paging.LoadState,androidx.paging.LoadState,androidx.paging.LoadStates,androidx.paging.LoadStates)">CombinedLoadStates</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;refresh:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;prepend:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;append:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;source:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadStates.html">LoadStates</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;mediator:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadStates.html">LoadStates</a>?<br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -61,10 +61,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.Factory.html b/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.Factory.html
index 4666677..135fb45 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.Factory.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.Factory.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/DataSource.Factory.html#Factory()">Factory</a>()</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>() <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
             <td>
@@ -110,10 +110,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/LiveData.html">LiveData</a>&lt;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;Value&gt;&gt;</code></td>
             <td>
@@ -139,10 +139,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -197,10 +197,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -220,10 +220,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -267,10 +267,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -336,10 +336,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -359,10 +359,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -376,10 +376,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -406,10 +406,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -429,10 +429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -477,10 +477,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -512,10 +512,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -534,10 +534,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pageSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -569,10 +569,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.InvalidatedCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.InvalidatedCallback.html
index b58eec0..e1f2785 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.InvalidatedCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.InvalidatedCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/annotation/AnyThread.html">AnyThread</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.html
index 6bf7d59..913e23b 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/DataSource.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a></code></td>
                 <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a></code></td>
             <td>
@@ -101,10 +101,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open @<a href="/reference/kotlin/androidx/annotation/AnyThread.html">AnyThread</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -161,10 +161,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -185,10 +185,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onInvalidatedCallback:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.InvalidatedCallback.html">DataSource.InvalidatedCallback</a></code></td>
               <td>
@@ -214,10 +214,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -237,10 +237,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -254,10 +254,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -284,10 +284,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -349,10 +349,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -372,10 +372,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -419,10 +419,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -442,10 +442,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -459,10 +459,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/DataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -487,10 +487,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onInvalidatedCallback:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.InvalidatedCallback.html">DataSource.InvalidatedCallback</a></code></td>
               <td>
@@ -509,10 +509,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ExperimentalPagingApi.html b/testData/paging/docs/reference/kotlin/androidx/paging/ExperimentalPagingApi.html
index 403a903..e0a94b7 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ExperimentalPagingApi.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ExperimentalPagingApi.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/ExperimentalPagingApi.html#ExperimentalPagingApi()">ExperimentalPagingApi</a>()</code></div>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/InvalidatingPagingSourceFactory.html b/testData/paging/docs/reference/kotlin/androidx/paging/InvalidatingPagingSourceFactory.html
index 2673b61..8004a35 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/InvalidatingPagingSourceFactory.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/InvalidatingPagingSourceFactory.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/InvalidatingPagingSourceFactory.html#InvalidatingPagingSourceFactory(kotlin.Function0)">InvalidatingPagingSourceFactory</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;pagingSourceFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;<br>)</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -61,10 +61,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagingSourceFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -88,10 +88,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html
index 3f4dda4..e2e7f75 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html">ItemKeyedDataSource.LoadInitialCallback</a></code></td>
                 <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html#LoadCallback()">LoadCallback</a>()</code></div>
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -91,10 +91,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -117,10 +117,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html
index 30279be..41db9c6 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialCallback.html#LoadInitialCallback()">LoadInitialCallback</a>()</code></div>
@@ -70,10 +70,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -88,15 +88,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html">androidx.paging.ItemKeyedDataSource.LoadCallback</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -145,10 +145,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html
index 18ad7d9..728b9b4 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html#LoadInitialParams(kotlin.Any,kotlin.Int,kotlin.Boolean)">LoadInitialParams</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;requestedInitialKey:&nbsp;Key?,<br>&nbsp;&nbsp;&nbsp;&nbsp;requestedLoadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -85,10 +85,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html
index 7f6ca33..7765155 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html#LoadParams(kotlin.Any,kotlin.Int)">LoadParams</a>(key:&nbsp;Key,&nbsp;requestedLoadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>Key</code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.html
index 4e8c326..952cb38 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ItemKeyedDataSource.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadCallback.html">ItemKeyedDataSource.LoadCallback</a></code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html#ItemKeyedDataSource()">ItemKeyedDataSource</a>()</code></div>
@@ -111,10 +111,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract Key</code></td>
             <td>
@@ -178,15 +178,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open @<a href="/reference/kotlin/androidx/annotation/AnyThread.html">AnyThread</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -220,15 +220,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -251,10 +251,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>item:&nbsp;Value</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Key</code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html">ItemKeyedDataSource.LoadParams</a>&lt;Key&gt;</code></td>
               <td>
@@ -356,10 +356,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadParams.html">ItemKeyedDataSource.LoadParams</a>&lt;Key&gt;</code></td>
               <td>
@@ -386,10 +386,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.LoadInitialParams.html">ItemKeyedDataSource.LoadInitialParams</a>&lt;Key&gt;</code></td>
               <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -438,10 +438,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -455,10 +455,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -485,10 +485,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -508,10 +508,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -525,10 +525,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -550,10 +550,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -573,10 +573,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -590,10 +590,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -620,10 +620,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -643,10 +643,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html">ItemKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -660,10 +660,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ItemSnapshotList.html b/testData/paging/docs/reference/kotlin/androidx/paging/ItemSnapshotList.html
index dee37c8..e44a3bb 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ItemSnapshotList.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ItemSnapshotList.html
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/ItemSnapshotList.html#ItemSnapshotList(kotlin.Int,kotlin.Int,kotlin.collections.List)">ItemSnapshotList</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;placeholdersBefore:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;placeholdersAfter:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;items:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;<br>)</code></div>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator T?</code></td>
             <td>
@@ -74,10 +74,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
             <td>
@@ -113,15 +113,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-abstract-collection/index.html">kotlin.collections.AbstractCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -167,7 +167,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-abstract-list/index.html">kotlin.collections.AbstractList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -225,7 +225,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">kotlin.collections.Collection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://developer.android.com/reference/java/util/stream/Stream.html">Stream</a>&lt;T?&gt;</code></td>
                       <td>
@@ -260,7 +260,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">kotlin.collections.Iterable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -290,10 +290,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IndexOutOfBoundsException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-index-out-of-bounds-exception/index.html">kotlin.IndexOutOfBoundsException</a></code></td>
               <td>
@@ -329,10 +329,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ItemSnapshotList.html#items()">items</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html
index c2ec73d..c7efc1a 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html#ListenableFuturePagingSource()">ListenableFuturePagingSource</a>()</code></div>
@@ -92,10 +92,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;suspend <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.html">PagingSource.LoadResult</a>&lt;Key,&nbsp;Value&gt;</code></td>
             <td>
@@ -117,15 +117,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract Key?</code></td>
                       <td>
@@ -166,15 +166,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFutureRemoteMediator.html b/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFutureRemoteMediator.html
index 8fa57c4..05b7f08 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFutureRemoteMediator.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/ListenableFutureRemoteMediator.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/ListenableFutureRemoteMediator.html#ListenableFutureRemoteMediator()">ListenableFutureRemoteMediator</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;suspend <a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/ListenableFuture.html">ListenableFuture</a>&lt;<a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a>&gt;</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/ListenableFuture.html">ListenableFuture</a>&lt;<a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LivePagedListBuilder.html b/testData/paging/docs/reference/kotlin/androidx/paging/LivePagedListBuilder.html
index 2b031f0..7732ffa 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LivePagedListBuilder.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LivePagedListBuilder.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.DataSource.Factory).toLiveData(androidx.paging.PagedList.Config,kotlin.Any,androidx.paging.PagedList.BoundaryCallback,java.util.concurrent.Executor)">toLiveData</a></code></td>
             <td></td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <span><del><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html#LivePagedListBuilder(androidx.paging.DataSource.Factory,androidx.paging.PagedList.Config)">LivePagedListBuilder</a></del></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;dataSourceFactory:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;Value&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a><br>)</code></div>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/LiveData.html">LiveData</a>&lt;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;Value&gt;&gt;</code></td>
             <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dataSourceFactory:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -174,10 +174,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dataSourceFactory:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.Factory.html">DataSource.Factory</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -203,10 +203,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagingSourceFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -236,10 +236,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagingSourceFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -268,10 +268,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/LiveData.html">LiveData</a>&lt;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;Value&gt;&gt;</code></td>
               <td>
@@ -293,10 +293,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boundaryCallback:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html">PagedList.BoundaryCallback</a>&lt;Value&gt;?</code></td>
               <td>
@@ -310,10 +310,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -333,10 +333,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>coroutineScope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td></td>
@@ -348,10 +348,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -372,10 +372,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fetchExecutor:&nbsp;<a href="https://developer.android.com/reference/java/util/concurrent/Executor.html">Executor</a></code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -412,10 +412,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>key:&nbsp;Key?</code></td>
               <td>
@@ -429,10 +429,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Error.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Error.html
index b2f50ce..7733fee 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Error.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Error.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#retry()">retry</a></code></td>
             <td></td>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/LoadState.Error.html#Error(kotlin.Throwable)">Error</a>(error:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>)</code></div>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -94,10 +94,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a></code></td>
             <td>
@@ -112,15 +112,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/LoadState.html">androidx.paging.LoadState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -144,10 +144,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>error:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Loading.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Loading.html
index c5a3ccc..3550cbc 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Loading.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.Loading.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -63,15 +63,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/LoadState.html">androidx.paging.LoadState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.NotLoading.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.NotLoading.html
index 698b478..83e03a5 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.NotLoading.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.NotLoading.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/LoadState.NotLoading.html#NotLoading(kotlin.Boolean)">NotLoading</a>(endOfPaginationReached:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;operator <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -79,15 +79,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/LoadState.html">androidx.paging.LoadState</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>endOfPaginationReached:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.html
index 514806b..dbfe097 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadState.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.Error.html">LoadState.Error</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
             <td></td>
@@ -62,10 +62,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.Error.html">LoadState.Error</a></code></td>
             <td>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/LoadState.html#LoadState(kotlin.Boolean)">LoadState</a>(endOfPaginationReached:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -107,10 +107,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -129,10 +129,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>endOfPaginationReached:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadStateAdapter.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadStateAdapter.html
index e0d6744..8707857 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadStateAdapter.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadStateAdapter.html
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingDataAdapter.html#withLoadStateHeaderAndFooter(androidx.paging.LoadStateAdapter,androidx.paging.LoadStateAdapter)">withLoadStateHeaderAndFooter</a></code></td>
             <td></td>
@@ -102,10 +102,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;VH&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.ViewHolder.html">RecyclerView.ViewHolder</a>&gt; <a href="/reference/kotlin/androidx/paging/LoadStateAdapter.html#LoadStateAdapter()">LoadStateAdapter</a>()</code></div>
@@ -118,10 +118,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -181,10 +181,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td>
@@ -199,15 +199,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.Adapter.html">androidx.recyclerview.widget.RecyclerView.Adapter</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -422,10 +422,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadState:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a></code></td>
               <td>
@@ -439,10 +439,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadStateAdapter.html#getItemViewType(kotlin.Int)">getItemViewType</a></code></td>
               <td></td>
@@ -467,10 +467,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>parent:&nbsp;<a href="https://developer.android.com/reference/android/view/ViewGroup.html">ViewGroup</a></code></td>
               <td>
@@ -490,10 +490,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadStateAdapter.html#getItemViewType(kotlin.Int)">getItemViewType</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadStates.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadStates.html
index f2f2ce2..1d2f7b0 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadStates.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadStates.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/LoadStates.html#LoadStates(androidx.paging.LoadState,androidx.paging.LoadState,androidx.paging.LoadState)">LoadStates</a>(refresh:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>,&nbsp;prepend:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>,&nbsp;append:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/LoadType.html b/testData/paging/docs/reference/kotlin/androidx/paging/LoadType.html
index d3fe684..2188466 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/LoadType.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/LoadType.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a></code></td>
             <td></td>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadType.html#APPEND">APPEND</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadCallback.html
index b141be2..d3afbc0 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadCallback.html#LoadCallback()">LoadCallback</a>()</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -79,10 +79,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -111,10 +111,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html
index 9604fc8..e6ebe8d 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html
@@ -18,10 +18,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialCallback.html#LoadInitialCallback()">LoadInitialCallback</a>()</code></div>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -87,10 +87,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -118,10 +118,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
               <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialParams.html
index 19da43c..555393c 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialParams.html#LoadInitialParams(kotlin.Int,kotlin.Boolean)">LoadInitialParams</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;requestedLoadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html
index 424db68..bf6d30f 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html#LoadParams(kotlin.Any,kotlin.Int)">LoadParams</a>(key:&nbsp;Key,&nbsp;requestedLoadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>Key</code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.html
index b08c46b..44985c2 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PageKeyedDataSource.html
@@ -36,10 +36,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadCallback.html">PageKeyedDataSource.LoadCallback</a></code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html#PageKeyedDataSource()">PageKeyedDataSource</a>()</code></div>
@@ -111,10 +111,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -171,15 +171,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open @<a href="/reference/kotlin/androidx/annotation/AnyThread.html">AnyThread</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -213,15 +213,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -244,10 +244,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -276,10 +276,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html">PageKeyedDataSource.LoadParams</a>&lt;Key&gt;</code></td>
               <td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadParams.html">PageKeyedDataSource.LoadParams</a>&lt;Key&gt;</code></td>
               <td>
@@ -337,10 +337,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.LoadInitialParams.html">PageKeyedDataSource.LoadInitialParams</a>&lt;Key&gt;</code></td>
               <td>
@@ -366,10 +366,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -389,10 +389,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -406,10 +406,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -436,10 +436,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -459,10 +459,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -476,10 +476,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -501,10 +501,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -524,10 +524,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -541,10 +541,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -571,10 +571,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;ToValue&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -594,10 +594,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html">PageKeyedDataSource</a>&lt;Key,&nbsp;ToValue&gt;</code></td>
               <td>
@@ -611,10 +611,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PageKeyedDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html
index daca8fe..68c3d3c 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html
@@ -26,10 +26,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -44,10 +44,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html#BoundaryCallback()">BoundaryCallback</a>()</code></div>
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -120,10 +120,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>itemAtEnd:&nbsp;T</code></td>
               <td>
@@ -143,10 +143,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>itemAtFront:&nbsp;T</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Builder.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Builder.html
index 42e55c3..73e2e0c 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Builder.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Builder.html
@@ -19,10 +19,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -43,10 +43,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagedList.Builder.html#Builder(androidx.paging.DataSource,androidx.paging.PagedList.Config)">Builder</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;dataSource:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;Value&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a><br>)</code></div>
@@ -78,10 +78,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;Value&gt;</code></td>
             <td>
@@ -150,10 +150,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dataSource:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -180,10 +180,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>dataSource:&nbsp;<a href="/reference/kotlin/androidx/paging/DataSource.html">DataSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -208,10 +208,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagingSource:&nbsp;<a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -244,10 +244,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagingSource:&nbsp;<a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -282,10 +282,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;Value&gt;</code></td>
               <td>
@@ -299,10 +299,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalArgumentException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a></code></td>
               <td>
@@ -322,10 +322,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>boundaryCallback:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html">PagedList.BoundaryCallback</a>&lt;Value&gt;?</code></td>
               <td>
@@ -339,10 +339,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -363,10 +363,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>coroutineScope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td></td>
@@ -378,10 +378,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -401,10 +401,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fetchDispatcher:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a></code></td>
               <td>
@@ -418,10 +418,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -442,10 +442,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>fetchExecutor:&nbsp;<a href="https://developer.android.com/reference/java/util/concurrent/Executor.html">Executor</a></code></td>
               <td>
@@ -459,10 +459,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -481,10 +481,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialKey:&nbsp;Key?</code></td>
               <td>
@@ -498,10 +498,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -520,10 +520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>notifyDispatcher:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a></code></td>
               <td>
@@ -537,10 +537,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -560,10 +560,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>notifyExecutor:&nbsp;<a href="https://developer.android.com/reference/java/util/concurrent/Executor.html">Executor</a></code></td>
               <td>
@@ -577,10 +577,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Builder.html">PagedList.Builder</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Callback.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Callback.html
index 9bc9c1a..5289615 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Callback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Callback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/PagedList.Callback.html#Callback()">Callback</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -75,10 +75,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>position:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -103,10 +103,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>position:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>position:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.Builder.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.Builder.html
index 19fb982..0483f02 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.Builder.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.Builder.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html#Builder()">Builder</a>()</code></div>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -113,10 +113,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalArgumentException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a></code></td>
               <td>
@@ -154,10 +154,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>enablePlaceholders:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -171,10 +171,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -195,10 +195,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>initialLoadSizeHint:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;1) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -212,10 +212,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -246,10 +246,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>maxSize:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;2) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -263,10 +263,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -280,10 +280,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Companion.html#MAX_SIZE_UNBOUNDED()">MAX_SIZE_UNBOUNDED</a></code></td>
               <td></td>
@@ -307,10 +307,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pageSize:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;1) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -324,10 +324,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
@@ -341,10 +341,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalArgumentException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-argument-exception/index.html">kotlin.IllegalArgumentException</a></code></td>
               <td>
@@ -366,10 +366,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>prefetchDistance:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -383,10 +383,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.html
index 1b81b95..0b8eb9b 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.Config.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Builder.html">PagedList.Config.Builder</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.Companion.html#MAX_SIZE_UNBOUNDED()">MAX_SIZE_UNBOUNDED</a></code></td>
               <td></td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#loadAround(kotlin.Int)">loadAround</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.html
index 70253f6..9305c52 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedList.html
@@ -77,10 +77,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/kotlin/androidx/annotation/MainThread.html">MainThread</a><a href="/reference/kotlin/androidx/paging/PagedList.BoundaryCallback.html">PagedList.BoundaryCallback</a></code></td>
             <td>
@@ -136,10 +136,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -217,10 +217,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
             <td>
@@ -284,15 +284,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/AbstractCollection.html">java.util.AbstractCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -362,7 +362,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/AbstractList.html">java.util.AbstractList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -462,7 +462,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-collection/index.html">kotlin.collections.Collection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://developer.android.com/reference/java/util/stream/Stream.html">Stream</a>&lt;T&gt;</code></td>
                       <td>
@@ -497,7 +497,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">kotlin.collections.Iterable</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -513,7 +513,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-collection/index.html">kotlin.collections.MutableCollection</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -529,7 +529,7 @@
             <td><devsite-expandable><span class="expand-control">From class <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-list/index.html">kotlin.collections.MutableList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -554,15 +554,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="https://developer.android.com/reference/java/util/AbstractList.html">java.util.AbstractList</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
@@ -590,10 +590,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>previousSnapshot:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;?</code></td>
               <td>
@@ -613,10 +613,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#removeWeakCallback(androidx.paging.PagedList.Callback)">removeWeakCallback</a></code></td>
               <td></td>
@@ -634,10 +634,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Callback.html">PagedList.Callback</a></code></td>
               <td>
@@ -651,10 +651,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#removeWeakCallback(androidx.paging.PagedList.Callback)">removeWeakCallback</a></code></td>
               <td></td>
@@ -671,10 +671,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a>, <a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -688,10 +688,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#removeWeakLoadStateListener(kotlin.Function2)">removeWeakLoadStateListener</a></code></td>
               <td></td>
@@ -714,10 +714,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -731,10 +731,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T?</code></td>
               <td>
@@ -748,10 +748,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#size()">size</a></code></td>
               <td></td>
@@ -768,10 +768,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -785,10 +785,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IndexOutOfBoundsException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-index-out-of-bounds-exception/index.html">kotlin.IndexOutOfBoundsException</a></code></td>
               <td>
@@ -807,10 +807,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>callback:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Callback.html">PagedList.Callback</a></code></td>
               <td>
@@ -824,10 +824,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#addWeakCallback(kotlin.collections.List,androidx.paging.PagedList.Callback)">addWeakCallback</a></code></td>
               <td></td>
@@ -844,10 +844,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a>, <a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -861,10 +861,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#addWeakLoadStateListener(kotlin.Function2)">addWeakLoadStateListener</a></code></td>
               <td></td>
@@ -883,10 +883,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#addWeakLoadStateListener(kotlin.Function2)">addWeakLoadStateListener</a></code></td>
               <td></td>
@@ -908,10 +908,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -931,10 +931,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -953,10 +953,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalStateException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a></code></td>
               <td>
@@ -976,10 +976,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1000,10 +1000,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -1023,10 +1023,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?</code></td>
               <td>
@@ -1047,10 +1047,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1064,10 +1064,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#size()">size</a></code></td>
               <td></td>
@@ -1092,10 +1092,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html#loadedCount()">loadedCount</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagedListAdapter.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagedListAdapter.html
index a4e3d8d..e7bf6a1 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagedListAdapter.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagedListAdapter.html
@@ -41,10 +41,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -65,10 +65,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;VH&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.ViewHolder.html">RecyclerView.ViewHolder</a>&gt; <a href="/reference/kotlin/androidx/paging/PagedListAdapter.html#PagedListAdapter(androidx.recyclerview.widget.DiffUtil.ItemCallback)">PagedListAdapter</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;diffCallback:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;T&gt;<br>)</code></div>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -167,10 +167,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open T?</code></td>
             <td>
@@ -184,10 +184,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
             <td>
@@ -202,15 +202,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.Adapter.html">androidx.recyclerview.widget.RecyclerView.Adapter</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -415,10 +415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>diffCallback:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;T&gt;</code></td>
               <td>
@@ -443,10 +443,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a>, <a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -460,10 +460,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedListAdapter.html#removeLoadStateListener(kotlin.Function2)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -487,10 +487,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>currentList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -504,10 +504,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedListAdapter.html#onCurrentListChanged(androidx.paging.PagedList)">onCurrentListChanged</a></code></td>
               <td></td>
@@ -526,10 +526,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>previousList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -549,10 +549,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedListAdapter.html#onCurrentListChanged(androidx.paging.PagedList,androidx.paging.PagedList)">onCurrentListChanged</a></code></td>
               <td></td>
@@ -569,10 +569,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a>, <a href="/reference/kotlin/androidx/paging/LoadState.html">LoadState</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -586,10 +586,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedListAdapter.html#addLoadStateListener(kotlin.Function2)">addLoadStateListener</a></code></td>
               <td></td>
@@ -607,10 +607,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagedList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -631,10 +631,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pagedList:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -681,10 +681,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.html">PagedList</a>&lt;T&gt;?</code></td>
               <td>
@@ -698,10 +698,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedListAdapter.html#onCurrentListChanged(androidx.paging.PagedList)">onCurrentListChanged</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/Pager.html b/testData/paging/docs/reference/kotlin/androidx/paging/Pager.html
index 9e21e37..4692630 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/Pager.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/Pager.html
@@ -21,10 +21,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/Pager.html#Pager(androidx.paging.PagingConfig,kotlin.Any,kotlin.Function0)">Pager</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagingConfig.html">PagingConfig</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialKey:&nbsp;Key?,<br>&nbsp;&nbsp;&nbsp;&nbsp;pagingSourceFactory:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="/reference/kotlin/androidx/paging/PagingSource.html">PagingSource</a>&lt;Key,&nbsp;Value&gt;<br>)</code></div>
@@ -42,10 +42,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;Value&gt;&gt;</code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.Companion.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.Companion.html
index 915ddd6..badc664 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.Companion.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.html
index f7ece65..29a055d 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingConfig.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/PagingConfig.html#PagingConfig(kotlin.Int,kotlin.Int,kotlin.Boolean,kotlin.Int,kotlin.Int,kotlin.Int)">PagingConfig</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;pageSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;prefetchDistance:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;enablePlaceholders:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;initialLoadSize:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;1) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;maxSize:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;2) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;jumpThreshold:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><br>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -141,10 +141,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.html#getRefreshKey(androidx.paging.PagingState)">getRefreshKey</a></code></td>
               <td></td>
@@ -177,10 +177,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingConfig.Companion.html#MAX_SIZE_UNBOUNDED()">MAX_SIZE_UNBOUNDED</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.Companion.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.Companion.html
index 05595e6..9851164 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.Companion.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;T&gt;</code></td>
             <td>
@@ -64,10 +64,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>sourceLoadStates:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadStates.html">LoadStates</a></code></td>
               <td>
@@ -92,10 +92,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -114,10 +114,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.html
index 5d55946..2f6d5f0 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingData.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public companion functions</h3></th>
+            <th colspan="100%"><h3>Public companion functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;T&gt;</code></td>
             <td>
@@ -56,10 +56,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Extension functions</h3></th>
+            <th colspan="100%"><h3>Extension functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;T&gt;</code></td>
             <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>sourceLoadStates:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadStates.html">LoadStates</a></code></td>
               <td>
@@ -259,10 +259,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -281,10 +281,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -316,10 +316,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>predicate:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;T,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -344,10 +344,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transform:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;T,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">Iterable</a>&lt;R&gt;&gt;</code></td>
               <td>
@@ -452,10 +452,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>generator:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;<a href="/reference/kotlin/androidx/paging/AdjacentItems.html">AdjacentItems</a>&lt;T&gt;,&nbsp;R?&gt;</code></td>
               <td>
@@ -480,10 +480,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transform:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;T,&nbsp;R&gt;</code></td>
               <td>
@@ -530,10 +530,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -553,10 +553,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertHeaderItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertHeaderItem</a></code></td>
               <td></td>
@@ -575,10 +575,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -598,10 +598,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertFooterItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertFooterItem</a></code></td>
               <td></td>
@@ -676,10 +676,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -788,10 +788,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -827,10 +827,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.PagingData).map(kotlin.coroutines.SuspendFunction1)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingDataAdapter.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingDataAdapter.html
index fbf3a64..df43ad8 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingDataAdapter.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingDataAdapter.html
@@ -60,10 +60,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;VH&nbsp;:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.ViewHolder.html">RecyclerView.ViewHolder</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingDataAdapter.html#PagingDataAdapter(androidx.recyclerview.widget.DiffUtil.ItemCallback,kotlinx.coroutines.CoroutineDispatcher,kotlinx.coroutines.CoroutineDispatcher)">PagingDataAdapter</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;diffCallback:&nbsp;<a href="/reference/kotlin/androidx/recyclerview/widget/DiffUtil.ItemCallback.html">DiffUtil.ItemCallback</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;mainDispatcher:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;workerDispatcher:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-dispatcher/index.html">CoroutineDispatcher</a><br>)</code></div>
@@ -76,10 +76,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -190,10 +190,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected functions</h3></th>
+            <th colspan="100%"><h3>Protected functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>T?</code></td>
             <td>
@@ -208,10 +208,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;<a href="/reference/kotlin/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>&gt;</code></td>
             <td>
@@ -226,15 +226,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/recyclerview/widget/RecyclerView.Adapter.html">androidx.recyclerview.widget.RecyclerView.Adapter</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -437,10 +437,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -454,10 +454,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingDataAdapter.html#removeLoadStateListener(kotlin.Function1)">removeLoadStateListener</a></code></td>
               <td></td>
@@ -484,10 +484,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>index:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -501,10 +501,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T?</code></td>
               <td>
@@ -544,10 +544,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.html#invalidate()">invalidate</a></code></td>
               <td></td>
@@ -564,10 +564,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>listener:&nbsp;(<a href="/reference/kotlin/androidx/paging/CombinedLoadStates.html">CombinedLoadStates</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -581,10 +581,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingDataAdapter.html#addLoadStateListener(kotlin.Function1)">addLoadStateListener</a></code></td>
               <td></td>
@@ -616,10 +616,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>hasStableIds:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -633,10 +633,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.UnsupportedOperationException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unsupported-operation-exception/index.html">kotlin.UnsupportedOperationException</a></code></td>
               <td>
@@ -687,10 +687,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/Pager.html">Pager</a></code></td>
               <td></td>
@@ -741,10 +741,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingDataAdapter.html#submitData(androidx.paging.PagingData)">submitData</a></code></td>
               <td></td>
@@ -765,10 +765,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadStateAdapter.html">LoadStateAdapter</a></code></td>
               <td></td>
@@ -793,10 +793,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadStateAdapter.html">LoadStateAdapter</a></code></td>
               <td></td>
@@ -821,10 +821,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadStateAdapter.html">LoadStateAdapter</a></code></td>
               <td></td>
@@ -850,10 +850,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>position:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -867,10 +867,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>T?</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html
index ad1ff5e..390993c 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html#Append(kotlin.Any,kotlin.Int,kotlin.Boolean)">Append</a>(key:&nbsp;Key,&nbsp;loadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open Key</code></td>
             <td>
@@ -68,15 +68,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.html">androidx.paging.PagingSource.LoadParams</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Prepend.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Prepend.html
index 0f19ca0..ff0fffe 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Prepend.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Prepend.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.Prepend.html#Prepend(kotlin.Any,kotlin.Int,kotlin.Boolean)">Prepend</a>(key:&nbsp;Key,&nbsp;loadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open Key</code></td>
             <td>
@@ -68,15 +68,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.html">androidx.paging.PagingSource.LoadParams</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Refresh.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Refresh.html
index 8182358..01f3c3a 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Refresh.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.Refresh.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.Refresh.html#Refresh(kotlin.Any,kotlin.Int,kotlin.Boolean)">Refresh</a>(key:&nbsp;Key?,&nbsp;loadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open Key?</code></td>
             <td>
@@ -68,15 +68,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.html">androidx.paging.PagingSource.LoadParams</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.html
index bad3470..8ec7bb7 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadParams.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html">PagingSource.LoadParams.Append</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.Append.html">PagingSource.LoadParams.Append</a></code></td>
             <td>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.html#LoadParams(kotlin.Int,kotlin.Boolean)">LoadParams</a>(loadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -91,10 +91,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract Key?</code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html
index b14e4f2..d3cf6b4 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html
@@ -86,10 +86,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html#Error(kotlin.Throwable)">Error</a>(throwable:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>)</code></div>
@@ -102,10 +102,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Invalid.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Invalid.html
index c3a185c..552fece 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Invalid.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Invalid.html
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Invalid.html#Invalid()">Invalid</a>()</code></div>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.Companion.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.Companion.html
index 3689f61..505a233 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.Companion.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.Companion.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html
index e110096..d3a60d0 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html
@@ -69,10 +69,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -86,10 +86,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html#Page(kotlin.collections.List,kotlin.Any,kotlin.Any)">Page</a>(data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;,&nbsp;prevKey:&nbsp;Key?,&nbsp;nextKey:&nbsp;Key?)</code></div>
@@ -108,10 +108,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
             <td>
@@ -164,10 +164,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;Value&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.html
index 2f56aa0..5a909fd 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.LoadResult.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html">PagingSource.LoadResult.Error</a></code></td>
                 <td>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Error.html">PagingSource.LoadResult.Error</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.html#LoadResult()">LoadResult</a>()</code></div>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.html
index bfba220..648fe0b 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingSource.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ListenableFuturePagingSource.html">ListenableFuturePagingSource</a></code></td>
                 <td>
@@ -138,10 +138,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -161,10 +161,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">See also</th>
+            <th colspan="100%">See also</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/Pager.html">Pager</a></code></td>
             <td></td>
@@ -177,10 +177,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.LoadParams.html">PagingSource.LoadParams</a></code></td>
             <td>
@@ -240,10 +240,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingSource.html#PagingSource()">PagingSource</a>()</code></div>
@@ -256,10 +256,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract Key?</code></td>
             <td>
@@ -302,10 +302,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -338,10 +338,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -370,10 +370,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>state:&nbsp;<a href="/reference/kotlin/androidx/paging/PagingState.html">PagingState</a>&lt;Key,&nbsp;Value&gt;</code></td>
               <td>
@@ -387,10 +387,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Key?</code></td>
               <td>
@@ -424,10 +424,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onInvalidatedCallback:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -446,10 +446,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>onInvalidatedCallback:&nbsp;() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
               <td>
@@ -477,10 +477,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingConfig.html#jumpThreshold()">jumpThreshold</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PagingState.html b/testData/paging/docs/reference/kotlin/androidx/paging/PagingState.html
index da74539..1915145 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PagingState.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PagingState.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PagingState.html#PagingState(kotlin.collections.List,kotlin.Int,androidx.paging.PagingConfig,kotlin.Int)">PagingState</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;pages:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html">PagingSource.LoadResult.Page</a>&lt;Key,&nbsp;Value&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;anchorPosition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>?,<br>&nbsp;&nbsp;&nbsp;&nbsp;config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagingConfig.html">PagingConfig</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;leadingPlaceholderCount:&nbsp;@<a href="/reference/kotlin/androidx/annotation/IntRange.html">IntRange</a>(from&nbsp;=&nbsp;0) <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>Value?</code></td>
             <td>
@@ -93,10 +93,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>?</code></td>
             <td>
@@ -136,10 +136,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>anchorPosition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -153,10 +153,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Value?</code></td>
               <td>
@@ -176,10 +176,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>anchorPosition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -193,10 +193,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.Page.html">PagingSource.LoadResult.Page</a>&lt;Key,&nbsp;Value&gt;?</code></td>
               <td>
@@ -218,10 +218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Value?</code></td>
               <td>
@@ -243,10 +243,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
               <td>
@@ -264,10 +264,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>Value?</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialCallback.html
index d62f84b..8f371f7 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialCallback.html#LoadInitialCallback()">LoadInitialCallback</a>()</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -80,10 +80,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -104,10 +104,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
@@ -140,10 +140,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialParams.html
index 7ca10f8..29dd8e8 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialParams.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialParams.html#LoadInitialParams(kotlin.Int,kotlin.Int,kotlin.Int,kotlin.Boolean)">LoadInitialParams</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;requestedStartPosition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;requestedLoadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;pageSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;placeholdersEnabled:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a><br>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeCallback.html b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeCallback.html
index f1af655..0ac5d12 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeCallback.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeCallback.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
             <td>
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt; <a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeCallback.html#LoadRangeCallback()">LoadRangeCallback</a>()</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -73,10 +73,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>?&gt;</code></td>
               <td>
@@ -96,10 +96,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>data:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeParams.html b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeParams.html
index aed0002..62fc418 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeParams.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeParams.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeParams.html#LoadRangeParams(kotlin.Int,kotlin.Int)">LoadRangeParams</a>(startPosition:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>,&nbsp;loadSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.html
index e01a578..0729919 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/PositionalDataSource.html
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2">Parameters</th>
+            <th colspan="100%">Parameters</th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialCallback.html">PositionalDataSource.LoadInitialCallback</a></code></td>
             <td>
@@ -90,10 +90,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/PositionalDataSource.html#PositionalDataSource()">PositionalDataSource</a>()</code></div>
@@ -106,10 +106,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/kotlin/androidx/annotation/WorkerThread.html">WorkerThread</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -159,15 +159,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open @<a href="/reference/kotlin/androidx/annotation/AnyThread.html">AnyThread</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
@@ -201,15 +201,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/DataSource.html">androidx.paging.DataSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
@@ -232,10 +232,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;T&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -257,10 +257,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadInitialParams.html">PositionalDataSource.LoadInitialParams</a></code></td>
               <td>
@@ -287,10 +287,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>params:&nbsp;<a href="/reference/kotlin/androidx/paging/PositionalDataSource.LoadRangeParams.html">PositionalDataSource.LoadRangeParams</a></code></td>
               <td>
@@ -316,10 +316,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>function:&nbsp;<a href="/reference/kotlin/androidx/arch/core/util/Function.html">Function</a>&lt;T,&nbsp;V&gt;</code></td>
               <td>
@@ -333,10 +333,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;V&gt;</code></td>
               <td>
@@ -350,10 +350,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -380,10 +380,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>function:&nbsp;(T) <span style="white-space: nowrap;">-&gt;</span> V</code></td>
               <td>
@@ -397,10 +397,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;V&gt;</code></td>
               <td>
@@ -414,10 +414,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html#mapByPage(androidx.arch.core.util.Function)">mapByPage</a></code></td>
               <td></td>
@@ -439,10 +439,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>function:&nbsp;<a href="/reference/kotlin/androidx/arch/core/util/Function.html">Function</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;V&gt;&gt;</code></td>
               <td>
@@ -456,10 +456,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;V&gt;</code></td>
               <td>
@@ -473,10 +473,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
@@ -503,10 +503,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>function:&nbsp;(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;T&gt;) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;V&gt;</code></td>
               <td>
@@ -520,10 +520,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html">PositionalDataSource</a>&lt;V&gt;</code></td>
               <td>
@@ -537,10 +537,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PositionalDataSource.html#map(androidx.arch.core.util.Function)">map</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html
index 100832f..acf26b7 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html#LAUNCH_INITIAL_REFRESH">LAUNCH_INITIAL_REFRESH</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html
index 12dbedc..c583f1e 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html#Error(kotlin.Throwable)">Error</a>(throwable:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a>)</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-throwable/index.html">Throwable</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Success.html b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Success.html
index 96bf554..4d91344 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Success.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Success.html
@@ -35,10 +35,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Success.html#Success(kotlin.Boolean)">Success</a>(endOfPaginationReached:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>)</code></div>
@@ -51,10 +51,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html
index e41378a..8ea5bab 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html">RemoteMediator.MediatorResult.Error</a></code></td>
                 <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.Error.html">RemoteMediator.MediatorResult.Error</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Protected constructors</h3></th>
+            <th colspan="100%"><h3>Protected constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html#MediatorResult()">MediatorResult</a>()</code></div>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.html b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.html
index 12e1c24..6998395 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/RemoteMediator.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ListenableFutureRemoteMediator.html">ListenableFutureRemoteMediator</a></code></td>
                 <td>
@@ -238,10 +238,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -273,10 +273,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/RemoteMediator.html#RemoteMediator()">RemoteMediator</a>()</code></div>
@@ -289,10 +289,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open&nbsp;suspend <a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -325,10 +325,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -369,10 +369,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -411,10 +411,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/TerminalSeparatorType.html b/testData/paging/docs/reference/kotlin/androidx/paging/TerminalSeparatorType.html
index 9e0b6f3..2e9eaeb 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/TerminalSeparatorType.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/TerminalSeparatorType.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html#FULLY_COMPLETE">FULLY_COMPLETE</a></code></td>
             <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/package-summary.html b/testData/paging/docs/reference/kotlin/androidx/paging/package-summary.html
index 5904e01..6918e3a 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/package-summary.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/package-summary.html
@@ -18,7 +18,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AsyncPagedListDiffer.PagedListListener.html">AsyncPagedListDiffer.PagedListListener</a></code></td>
             <td>
@@ -37,7 +37,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/AdjacentItems.html">AdjacentItems</a></code></td>
             <td>
@@ -380,7 +380,7 @@
     <h2>Objects</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadState.Loading.html">LoadState.Loading</a></code></td>
             <td>
@@ -393,7 +393,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/ExperimentalPagingApi.html">ExperimentalPagingApi</a></code></td>
             <td>
@@ -406,7 +406,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
             <td>
@@ -431,7 +431,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
             <td>
@@ -452,7 +452,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.flow/-flow/index.html">Flow</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;T&gt;&gt;</code></td>
             <td>
@@ -613,7 +613,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/lifecycle/LiveData.html">LiveData</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;Value&gt;&gt;</code></td>
             <td>
@@ -633,10 +633,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pageSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -680,10 +680,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt;</code></td>
               <td>
@@ -788,10 +788,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td>
@@ -812,10 +812,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>lifecycle:&nbsp;<a href="/reference/kotlin/androidx/lifecycle/Lifecycle.html">Lifecycle</a></code></td>
               <td>
@@ -836,10 +836,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>viewModel:&nbsp;<a href="/reference/kotlin/androidx/lifecycle/ViewModel.html">ViewModel</a></code></td>
               <td>
@@ -860,10 +860,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td>
@@ -892,10 +892,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>predicate:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;T,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a>&gt;</code></td>
               <td>
@@ -930,10 +930,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transform:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;T,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-iterable/index.html">Iterable</a>&lt;R&gt;&gt;</code></td>
               <td>
@@ -960,10 +960,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -983,10 +983,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertHeaderItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertHeaderItem</a></code></td>
               <td></td>
@@ -1005,10 +1005,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -1028,10 +1028,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.PagingData).insertFooterItem(androidx.paging.TerminalSeparatorType,kotlin.Any)">insertFooterItem</a></code></td>
               <td></td>
@@ -1106,10 +1106,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -1218,10 +1218,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>terminalSeparatorType:&nbsp;<a href="/reference/kotlin/androidx/paging/TerminalSeparatorType.html">TerminalSeparatorType</a> = FULLY_COMPLETE</code></td>
               <td>
@@ -1332,10 +1332,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>generator:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;<a href="/reference/kotlin/androidx/paging/AdjacentItems.html">AdjacentItems</a>&lt;T&gt;,&nbsp;R?&gt;</code></td>
               <td>
@@ -1365,10 +1365,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/package-summary.html#(androidx.paging.PagingData).map(kotlin.coroutines.SuspendFunction1)">map</a></code></td>
               <td></td>
@@ -1385,10 +1385,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>transform:&nbsp;<a href="https://guava.dev/releases/18.0/api/docs/package-list/com/google/common/util/concurrent/AsyncFunction.html">AsyncFunction</a>&lt;T,&nbsp;R&gt;</code></td>
               <td>
@@ -1415,10 +1415,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -1450,10 +1450,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -1472,10 +1472,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pageSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1507,10 +1507,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -1530,10 +1530,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>config:&nbsp;<a href="/reference/kotlin/androidx/paging/PagedList.Config.html">PagedList.Config</a></code></td>
               <td>
@@ -1573,10 +1573,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
@@ -1596,10 +1596,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>pageSize:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
@@ -1639,10 +1639,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/LivePagedListBuilder.html">LivePagedListBuilder</a></code></td>
               <td></td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxPagingSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxPagingSource.html
index af9a6a5..c0a449d 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxPagingSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxPagingSource.html
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/rxjava2/RxPagingSource.html#RxPagingSource()">RxPagingSource</a>()</code></div>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;suspend <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.html">PagingSource.LoadResult</a>&lt;Key,&nbsp;Value&gt;</code></td>
             <td>
@@ -112,15 +112,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract Key?</code></td>
                       <td>
@@ -161,15 +161,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxRemoteMediator.html b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxRemoteMediator.html
index 1320805..f12d191 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxRemoteMediator.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/RxRemoteMediator.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/rxjava2/RxRemoteMediator.html#RxRemoteMediator()">RxRemoteMediator</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;suspend <a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/io/reactivex/Single.html">Single</a>&lt;<a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a>&gt;</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/io/reactivex/Single.html">Single</a>&lt;<a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/package-summary.html b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/package-summary.html
index 8b1385d..1431e3c 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/package-summary.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava2/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/rxjava2/RxPagingSource.html">RxPagingSource</a></code></td>
             <td>
@@ -29,7 +29,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-experimental-coroutines-api/index.html">ExperimentalCoroutinesApi</a> <a href="/reference/kotlin/io/reactivex/Observable.html">Observable</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;T&gt;&gt;</code></td>
             <td>
@@ -78,7 +78,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/io/reactivex/Flowable.html">Flowable</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;Value&gt;&gt;</code></td>
             <td>
@@ -107,10 +107,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxPagingSource.html b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxPagingSource.html
index e8d28c6..da08262 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxPagingSource.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxPagingSource.html
@@ -71,10 +71,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/rxjava3/RxPagingSource.html#RxPagingSource()">RxPagingSource</a>()</code></div>
@@ -87,10 +87,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;suspend <a href="/reference/kotlin/androidx/paging/PagingSource.LoadResult.html">PagingSource.LoadResult</a>&lt;Key,&nbsp;Value&gt;</code></td>
             <td>
@@ -112,15 +112,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>abstract Key?</code></td>
                       <td>
@@ -161,15 +161,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited properties</h3></th>
+            <th colspan="100%"><h3>Inherited properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/androidx/paging/PagingSource.html">androidx.paging.PagingSource</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
                       <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxRemoteMediator.html b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxRemoteMediator.html
index 2f684e1..5639115 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxRemoteMediator.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/RxRemoteMediator.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code>&lt;Key&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>,&nbsp;Value&nbsp;:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>&gt; <a href="/reference/kotlin/androidx/paging/rxjava3/RxRemoteMediator.html#RxRemoteMediator()">RxRemoteMediator</a>()</code></div>
@@ -50,10 +50,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final&nbsp;suspend <a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
             <td>
@@ -100,10 +100,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a></code></td>
               <td>
@@ -131,10 +131,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/io/reactivex/rxjava3/core/Single.html">Single</a>&lt;<a href="/reference/kotlin/androidx/paging/RemoteMediator.InitializeAction.html">RemoteMediator.InitializeAction</a>&gt;</code></td>
               <td>
@@ -175,10 +175,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -217,10 +217,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a></code></td>
               <td>
@@ -249,10 +249,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>loadType:&nbsp;<a href="/reference/kotlin/androidx/paging/LoadType.html">LoadType</a></code></td>
               <td>
@@ -283,10 +283,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/io/reactivex/rxjava3/core/Single.html">Single</a>&lt;<a href="/reference/kotlin/androidx/paging/RemoteMediator.MediatorResult.html">RemoteMediator.MediatorResult</a>&gt;</code></td>
               <td>
diff --git a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/package-summary.html b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/package-summary.html
index 4d43360..c853e6f 100644
--- a/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/package-summary.html
+++ b/testData/paging/docs/reference/kotlin/androidx/paging/rxjava3/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/paging/rxjava3/RxPagingSource.html">RxPagingSource</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-experimental-coroutines-api/index.html">ExperimentalCoroutinesApi</a> <a href="/reference/kotlin/io/reactivex/rxjava3/core/Observable.html">Observable</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;T&gt;&gt;</code></td>
             <td>
@@ -77,7 +77,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/io/reactivex/rxjava3/core/Flowable.html">Flowable</a>&lt;<a href="/reference/kotlin/androidx/paging/PagingData.html">PagingData</a>&lt;Value&gt;&gt;</code></td>
             <td>
@@ -106,10 +106,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td>
@@ -130,10 +130,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>scope:&nbsp;<a href="https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines/-coroutine-scope/index.html">CoroutineScope</a></code></td>
               <td>
diff --git a/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.Scope.html b/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.Scope.html
index 4ed055c..0aba401 100644
--- a/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.Scope.html
+++ b/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.Scope.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/annotation/RestrictTo.Scope.html#GROUP_ID">GROUP_ID</a></code></td>
             <td>
diff --git a/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.html b/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.html
index 45cf766..d968ddc 100644
--- a/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.html
+++ b/testData/restrictTo/docs/reference/androidx/annotation/RestrictTo.html
@@ -22,10 +22,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a></code></td>
             <td></td>
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> RestrictTo.Scope[]</code></td>
             <td>
@@ -55,10 +55,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/androidx/annotation/RestrictTo.html#RestrictTo(kotlin.Array)">RestrictTo</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a>&nbsp;value)</code></div>
diff --git a/testData/restrictTo/docs/reference/androidx/annotation/package-summary.html b/testData/restrictTo/docs/reference/androidx/annotation/package-summary.html
index 92ffe11..c4b56d6 100644
--- a/testData/restrictTo/docs/reference/androidx/annotation/package-summary.html
+++ b/testData/restrictTo/docs/reference/androidx/annotation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/annotation/RestrictTo.html">RestrictTo</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/dokkatest/classes.html b/testData/restrictTo/docs/reference/dokkatest/classes.html
index 5e18a82..fefe7a5 100644
--- a/testData/restrictTo/docs/reference/dokkatest/classes.html
+++ b/testData/restrictTo/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html">JavaNestedPackageClass</a></code></td>
             <td></td>
@@ -22,7 +22,7 @@
     <h2 id="letter_R">R</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/annotation/RestrictTo.html">RestrictTo</a></code></td>
             <td>
@@ -39,7 +39,7 @@
     <h2 id="letter_V">V</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html">VisibleClassInHiddenFile</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/dokkatest/packages.html b/testData/restrictTo/docs/reference/dokkatest/packages.html
index 0ffdb51..79b5abf 100644
--- a/testData/restrictTo/docs/reference/dokkatest/packages.html
+++ b/testData/restrictTo/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/androidx/annotation/package-summary.html">androidx.annotation</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html b/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html
index 77f55b7..6f94d84 100644
--- a/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html
+++ b/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html#VisibleClassInHiddenFile()">VisibleClassInHiddenFile</a>()</code></div>
diff --git a/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html b/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html
index b79eb91..a6299fb 100644
--- a/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html
+++ b/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html#VisibleInnerClass()">VisibleInnerClass</a>()</code></div>
diff --git a/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.html b/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.html
index 0de3503..b2cf7a4 100644
--- a/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.html
+++ b/testData/restrictTo/docs/reference/dokkatest/restrictto/VisibleWithHiddenMembers.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html">VisibleWithHiddenMembers.VisibleInnerClass</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
@@ -47,10 +47,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/restrictto/VisibleWithHiddenMembers.html#VisibleWithHiddenMembers()">VisibleWithHiddenMembers</a>()</code></div>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final int</code></td>
             <td>
diff --git a/testData/restrictTo/docs/reference/dokkatest/restrictto/package-summary.html b/testData/restrictTo/docs/reference/dokkatest/restrictto/package-summary.html
index acad5aa..613f75d 100644
--- a/testData/restrictTo/docs/reference/dokkatest/restrictto/package-summary.html
+++ b/testData/restrictTo/docs/reference/dokkatest/restrictto/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/restrictto/VisibleClassInHiddenFile.html">VisibleClassInHiddenFile</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html b/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
index 8905e6e..1fd5bdb 100644
--- a/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
+++ b/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html#JavaNestedPackageClass()">JavaNestedPackageClass</a>()</code></div>
diff --git a/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html b/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html
index 36b631e..df2a2e3 100644
--- a/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html
+++ b/testData/restrictTo/docs/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html">JavaNestedPackageClass</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.Scope.html b/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.Scope.html
index cf9ed34..995b038 100644
--- a/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.Scope.html
+++ b/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.Scope.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/annotation/RestrictTo.Scope.html#GROUP_ID">GROUP_ID</a></code></td>
             <td>
diff --git a/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.html b/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.html
index 5d0a9b3..40c8575 100644
--- a/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.html
+++ b/testData/restrictTo/docs/reference/kotlin/androidx/annotation/RestrictTo.html
@@ -22,10 +22,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a></code></td>
             <td></td>
@@ -37,10 +37,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/androidx/annotation/RestrictTo.html#RestrictTo(kotlin.Array)">RestrictTo</a>(vararg&nbsp;value:&nbsp;<a href="/reference/kotlin/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a>)</code></div>
@@ -53,10 +53,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="/reference/kotlin/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a>&gt;</code></td>
             <td>
diff --git a/testData/restrictTo/docs/reference/kotlin/androidx/annotation/package-summary.html b/testData/restrictTo/docs/reference/kotlin/androidx/annotation/package-summary.html
index 997285e..5e1679d 100644
--- a/testData/restrictTo/docs/reference/kotlin/androidx/annotation/package-summary.html
+++ b/testData/restrictTo/docs/reference/kotlin/androidx/annotation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/annotation/RestrictTo.html">RestrictTo</a></code></td>
             <td>
@@ -22,7 +22,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/annotation/RestrictTo.Scope.html">RestrictTo.Scope</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/classes.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/classes.html
index c354474..5842ea6 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_J">J</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html">JavaNestedPackageClass</a></code></td>
             <td></td>
@@ -22,7 +22,7 @@
     <h2 id="letter_R">R</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/annotation/RestrictTo.html">RestrictTo</a></code></td>
             <td>
@@ -39,7 +39,7 @@
     <h2 id="letter_V">V</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html">VisibleClassInHiddenFile</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/packages.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/packages.html
index 3b412aa..46e984a 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/androidx/annotation/package-summary.html">androidx.annotation</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html
index 52dee2a..815277f 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html#VisibleClassInHiddenFile()">VisibleClassInHiddenFile</a>()</code></div>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html
index 262fe43..4c2e9f8 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html#VisibleInnerClass()">VisibleInnerClass</a>()</code></div>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.html
index 1f89049..6ac2aa5 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.VisibleInnerClass.html">VisibleWithHiddenMembers.VisibleInnerClass</a></code></td>
             <td></td>
@@ -30,10 +30,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/restrictto/VisibleWithHiddenMembers.html#VisibleWithHiddenMembers()">VisibleWithHiddenMembers</a>()</code></div>
@@ -46,10 +46,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -63,10 +63,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/package-summary.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/package-summary.html
index 25e6109..8c5a844 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/package-summary.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/restrictto/VisibleClassInHiddenFile.html">VisibleClassInHiddenFile</a></code></td>
             <td></td>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
index d83c707..3467556 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html#JavaNestedPackageClass()">JavaNestedPackageClass</a>()</code></div>
diff --git a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html
index 87151ae..7259e3a 100644
--- a/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html
+++ b/testData/restrictTo/docs/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/restrictto/toplevelhidden/nestedpackage/JavaNestedPackageClass.html">JavaNestedPackageClass</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/classes.html b/testData/sampleAnnotation/docs/reference/dokkatest/classes.html
index ace3060..ce6eb4d 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/classes.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_S">S</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/SamplerKt.html">SamplerKt</a></code></td>
             <td></td>
@@ -22,7 +22,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html">TabRowKt</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/packages.html b/testData/sampleAnnotation/docs/reference/dokkatest/packages.html
index d943fd9..a33690e 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/packages.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/package-summary.html">dokkatest.sampleAnnotation</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/SamplerKt.html b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/SamplerKt.html
index 1627f87..72d0e29 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/SamplerKt.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/SamplerKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
@@ -40,10 +40,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html
index e4408cb..188489e 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html#InnerClass()">InnerClass</a>()</code></div>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.html b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.html
index 3e2ab47..7ce8df7 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/TopLevelClass.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html">TopLevelClass.InnerClass</a></code></td>
             <td>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -79,10 +79,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/sampleAnnotation/TopLevelClass.html#TopLevelClass()">TopLevelClass</a>()</code></div>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html
index 7f19695..18fc755 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final void</code></td>
             <td>
@@ -265,10 +265,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>int&nbsp;selectedTabIndex</code></td>
               <td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html
index e2a14c3..7c1ac0e 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html">TabRowKt</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/package-summary.html b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/package-summary.html
index fd3b9fd..cdbab9c 100644
--- a/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/package-summary.html
+++ b/testData/sampleAnnotation/docs/reference/dokkatest/sampleAnnotation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/TopLevelClass.InnerInterface.html">TopLevelClass.InnerInterface</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/sampleAnnotation/SamplerKt.html">SamplerKt</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/classes.html b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/classes.html
index 6655df4..1344d39 100644
--- a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_S">S</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/SamplerKt.html">SamplerKt</a></code></td>
             <td></td>
@@ -22,7 +22,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/dokkatest/samples/TabRowKt.html">TabRowKt</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/packages.html b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/packages.html
index 83d214b..9354431 100644
--- a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/package-summary.html">dokkatest.sampleAnnotation</a></code></td>
             <td></td>
diff --git a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html
index 65d1e80..76763ff 100644
--- a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html
+++ b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html#InnerClass()">InnerClass</a>()</code></div>
diff --git a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.html b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.html
index a88badc..d4a9de4 100644
--- a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.html
+++ b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.html
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Nested types</h3></th>
+            <th colspan="100%"><h3>Nested types</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerClass.html">TopLevelClass.InnerClass</a></code></td>
             <td>
@@ -54,10 +54,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.html#TopLevelClass()">TopLevelClass</a>()</code></div>
@@ -70,10 +70,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -95,10 +95,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?</code></td>
             <td>
diff --git a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html
index 45a7060..8ffbcf6 100644
--- a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html
+++ b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/dokkatest/samples/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -262,10 +262,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>selectedTabIndex:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
               <td>
diff --git a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/package-summary.html b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/package-summary.html
index c48f573..1c9957b 100644
--- a/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/package-summary.html
+++ b/testData/sampleAnnotation/docs/reference/kotlin/dokkatest/sampleAnnotation/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.InnerInterface.html">TopLevelClass.InnerInterface</a></code></td>
             <td>
@@ -28,7 +28,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/sampleAnnotation/TopLevelClass.html">TopLevelClass</a></code></td>
             <td>
@@ -47,7 +47,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -61,7 +61,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
             <td>
@@ -75,7 +75,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>?</code></td>
             <td>
@@ -89,7 +89,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-pair/index.html">Pair</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>,&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/classes.html b/testData/simple/docs/reference/dokkatest/classes.html
index b6004c4..522b8cf 100644
--- a/testData/simple/docs/reference/dokkatest/classes.html
+++ b/testData/simple/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/Five.html">Five</a></code></td>
             <td></td>
@@ -30,7 +30,7 @@
     <h2 id="letter_O">O</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/One.html">One</a></code></td>
             <td>
@@ -43,7 +43,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/Three.html">Three</a></code></td>
             <td></td>
diff --git a/testData/simple/docs/reference/dokkatest/packages.html b/testData/simple/docs/reference/dokkatest/packages.html
index ed716a4..36da74e 100644
--- a/testData/simple/docs/reference/dokkatest/packages.html
+++ b/testData/simple/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/package-summary.html">dokkatest.simple</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/Five.html b/testData/simple/docs/reference/dokkatest/simple/Five.html
index 7eb772c..7438966 100644
--- a/testData/simple/docs/reference/dokkatest/simple/Five.html
+++ b/testData/simple/docs/reference/dokkatest/simple/Five.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/simple/One.html">One</a></code></td>
                 <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/simple/Five.html#Five()">Five</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/Four.html b/testData/simple/docs/reference/dokkatest/simple/Four.html
index 7a0505d..f931f68 100644
--- a/testData/simple/docs/reference/dokkatest/simple/Four.html
+++ b/testData/simple/docs/reference/dokkatest/simple/Four.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/dokkatest/simple/One.html">One</a></code></td>
                 <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/Fraggy.html b/testData/simple/docs/reference/dokkatest/simple/Fraggy.html
index ecd9c6e..45fc5f2 100644
--- a/testData/simple/docs/reference/dokkatest/simple/Fraggy.html
+++ b/testData/simple/docs/reference/dokkatest/simple/Fraggy.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/simple/Fraggy.html#Fraggy()">Fraggy</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static Q</code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/dokkatest/simple/Fraggy.html#registerForActivityResult(java.util.Map&lt;I,O&gt;,java.util.List&lt;O&gt;)">registerForActivityResult</a></code></td>
               <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/One.html b/testData/simple/docs/reference/dokkatest/simple/One.html
index 513ab00..979baee 100644
--- a/testData/simple/docs/reference/dokkatest/simple/One.html
+++ b/testData/simple/docs/reference/dokkatest/simple/One.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/simple/One.html#One(kotlin.Int)">One</a>(int&nbsp;blarg)</code></div>
@@ -81,10 +81,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final void</code></td>
             <td>
@@ -99,15 +99,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited methods</h3></th>
+            <th colspan="100%"><h3>Inherited methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/dokkatest/simple/Five.html">dokkatest.simple.Five</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code>final void</code></td>
                       <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/Three.html b/testData/simple/docs/reference/dokkatest/simple/Three.html
index 01c3a65..ffc2ec0 100644
--- a/testData/simple/docs/reference/dokkatest/simple/Three.html
+++ b/testData/simple/docs/reference/dokkatest/simple/Three.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/Three.html#A">A</a></code></td>
             <td></td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/Two.html b/testData/simple/docs/reference/dokkatest/simple/Two.html
index a6192a2..70d2d7a 100644
--- a/testData/simple/docs/reference/dokkatest/simple/Two.html
+++ b/testData/simple/docs/reference/dokkatest/simple/Two.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/dokkatest/simple/One.html">One</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>abstract void</code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/TwoKt.html b/testData/simple/docs/reference/dokkatest/simple/TwoKt.html
index a5dcdb8..d2e8af6 100644
--- a/testData/simple/docs/reference/dokkatest/simple/TwoKt.html
+++ b/testData/simple/docs/reference/dokkatest/simple/TwoKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&gt;</code></td>
             <td>
diff --git a/testData/simple/docs/reference/dokkatest/simple/package-summary.html b/testData/simple/docs/reference/dokkatest/simple/package-summary.html
index 7c0998d..618a533 100644
--- a/testData/simple/docs/reference/dokkatest/simple/package-summary.html
+++ b/testData/simple/docs/reference/dokkatest/simple/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/Four.html">Four</a></code></td>
             <td></td>
@@ -27,7 +27,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/Five.html">Five</a></code></td>
             <td></td>
@@ -52,7 +52,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/simple/Three.html">Three</a></code></td>
             <td></td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/classes.html b/testData/simple/docs/reference/kotlin/dokkatest/classes.html
index a7c28d5..a34c292 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Five.html">Five</a></code></td>
             <td></td>
@@ -30,7 +30,7 @@
     <h2 id="letter_O">O</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/One.html">One</a></code></td>
             <td>
@@ -43,7 +43,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Three.html">Three</a></code></td>
             <td></td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/packages.html b/testData/simple/docs/reference/kotlin/dokkatest/packages.html
index 76a3e7a..12e9a93 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/package-summary.html">dokkatest.simple</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/Five.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/Five.html
index ecd7aaf..645d1be 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/Five.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/Five.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/One.html">One</a></code></td>
                 <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/simple/Five.html#Five()">Five</a>()</code></div>
@@ -49,10 +49,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/Four.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/Four.html
index 4773355..faa231b 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/Four.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/Four.html
@@ -15,7 +15,7 @@
       <div id="subclasses-direct-summary">
         <div class="devsite-table-wrapper">
           <table class="responsive">
-            <tbody>
+            <tbody class="list">
               <tr>
                 <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/One.html">One</a></code></td>
                 <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/Fraggy.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/Fraggy.html
index 97065f1..b4a0bfd 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/Fraggy.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/Fraggy.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/simple/Fraggy.html#Fraggy()">Fraggy</a>()</code></div>
@@ -31,10 +31,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>java-static Q!</code></td>
             <td>
@@ -78,10 +78,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Fraggy.html#registerForActivityResult(java.util.Map&lt;I,O&gt;,java.util.List&lt;O&gt;)">registerForActivityResult</a></code></td>
               <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/One.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/One.html
index a07fdf4..c059446 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/One.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/One.html
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/simple/One.html#One(kotlin.Int)">One</a>(blarg:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>)</code></div>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -75,10 +75,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>open <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
@@ -99,15 +99,15 @@
       <table class="responsive" id="inhmethods">
         <thead>
           <tr>
-            <th colspan="2"><h3>Inherited functions</h3></th>
+            <th colspan="100%"><h3>Inherited functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td><devsite-expandable><span class="expand-control">From class <a href="/reference/kotlin/dokkatest/simple/Five.html">dokkatest.simple.Five</a></span>
               <div class="devsite-table-wrapper">
                 <table class="responsive">
-                  <tbody>
+                  <tbody class="list">
                     <tr>
                       <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
                       <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/Three.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/Three.html
index fd10baa..a2882b7 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/Three.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/Three.html
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Enum Values</h3></th>
+            <th colspan="100%"><h3>Enum Values</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Three.html#A">A</a></code></td>
             <td></td>
@@ -58,10 +58,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/Two.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/Two.html
index 2a93a05..a877dd7 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/Two.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/Two.html
@@ -17,10 +17,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -34,10 +34,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/One.html">One</a></code></td>
             <td>
diff --git a/testData/simple/docs/reference/kotlin/dokkatest/simple/package-summary.html b/testData/simple/docs/reference/kotlin/dokkatest/simple/package-summary.html
index dec1bc7..83df889 100644
--- a/testData/simple/docs/reference/kotlin/dokkatest/simple/package-summary.html
+++ b/testData/simple/docs/reference/kotlin/dokkatest/simple/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Four.html">Four</a></code></td>
             <td></td>
@@ -27,7 +27,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Five.html">Five</a></code></td>
             <td></td>
@@ -48,7 +48,7 @@
     <h2>Enums</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/simple/Three.html">Three</a></code></td>
             <td></td>
@@ -59,7 +59,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>&gt;</code></td>
             <td>
diff --git a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/classes.html b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/classes.html
index 0707a39..e48eaa1 100644
--- a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/classes.html
+++ b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_E">E</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleGenericInterface.html">ExampleGenericInterface</a></code></td>
             <td>
diff --git a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleGenericInterface.html b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleGenericInterface.html
index fb2ef2a..01a884e 100644
--- a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleGenericInterface.html
+++ b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleGenericInterface.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public functions</h3></th>
+            <th colspan="100%"><h3>Public functions</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>(<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-mutable-set/index.html">Mutable</a>)<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-set/index.html">Set</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html">Any</a>!&gt;!</code></td>
             <td>
diff --git a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleInterface.html b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleInterface.html
index 73fa691..b42aa16 100644
--- a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleInterface.html
+++ b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleInterface.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>?</code></td>
             <td>
diff --git a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/package-summary.html b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/package-summary.html
index 1fbe556..5c62f06 100644
--- a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/package-summary.html
+++ b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/dokkatest/simple/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Interfaces</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/tools/gradle-api/7.0/dokkatest/simple/ExampleGenericInterface.html">ExampleGenericInterface</a></code></td>
             <td>
diff --git a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/packages.html b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/packages.html
index 69c58dc..13af870 100644
--- a/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/packages.html
+++ b/testData/simpleVersioned/docs/reference/tools/gradle-api/7.0/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/tools/gradle-api/7.0/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/tools/gradle-api/7.0/dokkatest/simple/package-summary.html">dokkatest.simple</a></code></td>
             <td></td>
diff --git a/testData/topLevelFunctions/docs/reference/BarKt.html b/testData/topLevelFunctions/docs/reference/BarKt.html
index c4ed60c..6fc5233 100644
--- a/testData/topLevelFunctions/docs/reference/BarKt.html
+++ b/testData/topLevelFunctions/docs/reference/BarKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git "a/testData/topLevelFunctions/docs/reference/\133root\135/package-summary.html" "b/testData/topLevelFunctions/docs/reference/\133root\135/package-summary.html"
index 12f3050..b579592 100644
--- "a/testData/topLevelFunctions/docs/reference/\133root\135/package-summary.html"
+++ "b/testData/topLevelFunctions/docs/reference/\133root\135/package-summary.html"
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/[JVM root]/BarKt.html">BarKt</a></code></td>
             <td></td>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/alone/FooKt.html b/testData/topLevelFunctions/docs/reference/dokkatest/alone/FooKt.html
index 4c69b76..24b8619 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/alone/FooKt.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/alone/FooKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/alone/package-summary.html b/testData/topLevelFunctions/docs/reference/dokkatest/alone/package-summary.html
index 393c167..e0f5a1c 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/alone/package-summary.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/alone/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/alone/FooKt.html">FooKt</a></code></td>
             <td></td>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/classes.html b/testData/topLevelFunctions/docs/reference/dokkatest/classes.html
index e7a50fd..6364848 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/classes.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_B">B</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/[JVM root]/BarKt.html">BarKt</a></code></td>
             <td></td>
@@ -22,7 +22,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/toplevel/Foo.html">Foo</a></code></td>
             <td></td>
@@ -37,7 +37,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/toplevel/TopKt.html">TopKt</a></code></td>
             <td></td>
@@ -48,7 +48,7 @@
     <h2 id="letter_W">W</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/toplevel/Wassup.html">Wassup</a></code></td>
             <td>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/packages.html b/testData/topLevelFunctions/docs/reference/dokkatest/packages.html
index 3f8714f..bfa104f 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/packages.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/[JVM root]/package-summary.html">[JVM root]</a></code></td>
             <td></td>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Foo.html b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Foo.html
index eb094ff..6206c7a 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Foo.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Foo.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/toplevel/Foo.html#Foo()">Foo</a>()</code></div>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/TopKt.html b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/TopKt.html
index 497afba..c0ce4e8 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/TopKt.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/TopKt.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Constants</h3></th>
+            <th colspan="100%"><h3>Constants</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final boolean</code></td>
             <td>
@@ -33,10 +33,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="/reference/dokkatest/toplevel/Foo.html">Foo</a></code></td>
             <td>
@@ -57,10 +57,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public methods</h3></th>
+            <th colspan="100%"><h3>Public methods</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>static&nbsp;final void</code></td>
             <td>
@@ -126,10 +126,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function2&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> T,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Integer.html">Integer</a>,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> R&gt;&gt;&nbsp;receiver</code></td>
               <td>
@@ -167,10 +167,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> Function0&lt;<a href="https://developer.android.com/reference/java/util/List.html">List</a>&lt;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/Float.html">Float</a>&gt;&gt;</code></td>
               <td>
@@ -184,10 +184,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a>&nbsp;kotlin.IllegalStateException</code></td>
               <td>
@@ -201,10 +201,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/dokkatest/toplevel/package-summary.html#b(kotlin.Int,kotlin.String,kotlin.Boolean,dokkatest.toplevel.Foo)">b</a></code></td>
               <td>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Wassup.html b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Wassup.html
index 1415dc6..88e74b3 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Wassup.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/Wassup.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public fields</h3></th>
+            <th colspan="100%"><h3>Public fields</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>final @<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a></code></td>
             <td>
@@ -39,10 +39,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/dokkatest/toplevel/Wassup.html#Wassup(kotlin.String,kotlin.Array)">Wassup</a>(@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> <a href="https://developer.android.com/reference/java/lang/String.html">String</a>&nbsp;a,&nbsp;@<a href="/reference/androidx/annotation/NonNull.html">NonNull</a> String[]&nbsp;f)</code></div>
diff --git a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/package-summary.html b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/package-summary.html
index f7705f1..e47f1cb 100644
--- a/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/package-summary.html
+++ b/testData/topLevelFunctions/docs/reference/dokkatest/toplevel/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/toplevel/Wassup.html">Wassup</a></code></td>
             <td>
@@ -23,7 +23,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/dokkatest/toplevel/Foo.html">Foo</a></code></td>
             <td></td>
diff --git "a/testData/topLevelFunctions/docs/reference/kotlin/\133root\135/package-summary.html" "b/testData/topLevelFunctions/docs/reference/kotlin/\133root\135/package-summary.html"
index 4382d5d..d9b6b6a 100644
--- "a/testData/topLevelFunctions/docs/reference/kotlin/\133root\135/package-summary.html"
+++ "b/testData/topLevelFunctions/docs/reference/kotlin/\133root\135/package-summary.html"
@@ -9,7 +9,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/alone/package-summary.html b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/alone/package-summary.html
index 67be17e..c5530c3 100644
--- a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/alone/package-summary.html
+++ b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/alone/package-summary.html
@@ -9,7 +9,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/classes.html b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/classes.html
index fec689f..c3d9749 100644
--- a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/classes.html
+++ b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/classes.html
@@ -11,7 +11,7 @@
     <h2 id="letter_B">B</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/[JVM root]/BarKt.html">BarKt</a></code></td>
             <td></td>
@@ -22,7 +22,7 @@
     <h2 id="letter_F">F</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/Foo.html">Foo</a></code></td>
             <td></td>
@@ -37,7 +37,7 @@
     <h2 id="letter_T">T</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/TopKt.html">TopKt</a></code></td>
             <td></td>
@@ -48,7 +48,7 @@
     <h2 id="letter_W">W</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/Wassup.html">Wassup</a></code></td>
             <td>
diff --git a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/packages.html b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/packages.html
index 37b1117..034228b 100644
--- a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/packages.html
+++ b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/packages.html
@@ -9,7 +9,7 @@
     <p>These are all the API packages. See all <a href="/reference/kotlin/dokkatest/classes.html">API classes</a>.</p>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/[JVM root]/package-summary.html">[JVM root]</a></code></td>
             <td></td>
diff --git a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Foo.html b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Foo.html
index 381a3a0..27ad558 100644
--- a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Foo.html
+++ b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Foo.html
@@ -15,10 +15,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/toplevel/Foo.html#Foo()">Foo</a>()</code></div>
diff --git a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Wassup.html b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Wassup.html
index 8281fb2..079c7fc 100644
--- a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Wassup.html
+++ b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/Wassup.html
@@ -16,10 +16,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public constructors</h3></th>
+            <th colspan="100%"><h3>Public constructors</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td>
               <div><code><a href="/reference/kotlin/dokkatest/toplevel/Wassup.html#Wassup(kotlin.String,kotlin.Array)">Wassup</a>(a:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>,&nbsp;f:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html">Array</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a>&gt;)</code></div>
@@ -32,10 +32,10 @@
       <table class="responsive">
         <thead>
           <tr>
-            <th colspan="2"><h3>Public properties</h3></th>
+            <th colspan="100%"><h3>Public properties</h3></th>
           </tr>
         </thead>
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html">String</a></code></td>
             <td>
diff --git a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/package-summary.html b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/package-summary.html
index d927de8..2fcfee1 100644
--- a/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/package-summary.html
+++ b/testData/topLevelFunctions/docs/reference/kotlin/dokkatest/toplevel/package-summary.html
@@ -10,7 +10,7 @@
     <h2>Classes</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/Foo.html">Foo</a></code></td>
             <td></td>
@@ -21,7 +21,7 @@
     <h2>Annotations</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/Wassup.html">Wassup</a></code></td>
             <td>
@@ -34,7 +34,7 @@
     <h2>Type aliases</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/Bar.html">Bar</a></code></td>
             <td></td>
@@ -45,7 +45,7 @@
     <h2>Constants summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>const <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html">Boolean</a></code></td>
             <td>
@@ -59,7 +59,7 @@
     <h2>Top-level functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html">Unit</a></code></td>
             <td>
@@ -86,7 +86,7 @@
     <h2>Extension functions summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code>suspend&nbsp;inline @<a href="/reference/kotlin/dokkatest/toplevel/Wassup.html">Wassup</a>(a&nbsp;=&nbsp;&quot;hello&quot;,&nbsp;f&nbsp;=&nbsp;[&quot;world&quot;]) () <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
             <td>
@@ -100,7 +100,7 @@
     <h2>Top-level properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/Foo.html">Foo</a></code></td>
             <td>
@@ -113,7 +113,7 @@
     <h2>Extension properties summary</h2>
     <div class="devsite-table-wrapper">
       <table class="responsive">
-        <tbody>
+        <tbody class="list">
           <tr>
             <td width="40%"><code><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a></code></td>
             <td>
@@ -156,10 +156,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Parameters</th>
+              <th colspan="100%">Parameters</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>@<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-extension-function-type/index.html">ExtensionFunctionType</a> T.(@<a href="/reference/kotlin/dokkatest/toplevel/Wassup.html">Wassup</a> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html">Int</a>) <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;@<a href="/reference/kotlin/dokkatest/toplevel/Wassup.html">Wassup</a> R&gt;</code></td>
               <td>
@@ -197,10 +197,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Returns</th>
+              <th colspan="100%">Returns</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>() <span style="white-space: nowrap;">-&gt;</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-list/index.html">List</a>&lt;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html">Float</a>&gt;</code></td>
               <td>
@@ -214,10 +214,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">Throws</th>
+              <th colspan="100%">Throws</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code>kotlin.IllegalStateException:&nbsp;<a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-illegal-state-exception/index.html">kotlin.IllegalStateException</a></code></td>
               <td>
@@ -231,10 +231,10 @@
         <table class="responsive">
           <thead>
             <tr>
-              <th colspan="2">See also</th>
+              <th colspan="100%">See also</th>
             </tr>
           </thead>
-          <tbody>
+          <tbody class="list">
             <tr>
               <td width="40%"><code><a href="/reference/kotlin/dokkatest/toplevel/package-summary.html#b(kotlin.Int,kotlin.String,kotlin.Boolean,dokkatest.toplevel.Foo)">b</a></code></td>
               <td>