Update docs
diff --git a/docs/awesome_table_in_html.html b/docs/awesome_table_in_html.html
index 132501d..949666c 100644
--- a/docs/awesome_table_in_html.html
+++ b/docs/awesome_table_in_html.html
@@ -3211,8 +3211,8 @@
<h1>Column Style Specification</h1>
<p>When you have a table with lots of explanatory texts, you may want to specified the column width for different column, since the auto adjust in HTML may not work in its best way while basic LaTeX table is really bad at handling text wrapping. Also, sometimes, you may want to highlight a column (e.g. a “Total” column) by making it bold. In these scenario, you can use <code>column_spec()</code>. You can find an example below.</p>
<pre class="r"><code>text_tbl <- data.frame(
- Item = c("Item 1", "Item 2", "Item 3"),
- FeatureA = c(
+ Items = c("Item 1", "Item 2", "Item 3"),
+ Features = c(
"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin vehicula tempor ex. Morbi malesuada sagittis turpis, at venenatis nisl luctus a. ",
"In eu urna at magna luctus rhoncus quis in nisl. Fusce in velit varius, posuere risus et, cursus augue. Duis eleifend aliquam ante, a aliquet ex tincidunt in. ",
"Vivamus venenatis egestas eros ut tempus. Vivamus id est nisi. Aliquam molestie erat et sollicitudin venenatis. In ac lacus at velit scelerisque mattis. "
@@ -3228,10 +3228,10 @@
<thead>
<tr>
<th style="text-align:left;">
-Item
+Items
</th>
<th style="text-align:left;">
-FeatureA
+Features
</th>
</tr>
</thead>
@@ -3253,10 +3253,10 @@
</td>
</tr>
<tr>
-<td style="text-align:left;">
+<td style="text-align:left;font-weight: bold;">
Item 3
</td>
-<td style="text-align:left;">
+<td style="text-align:left;width: 30em; ">
Vivamus venenatis egestas eros ut tempus. Vivamus id est nisi. Aliquam molestie erat et sollicitudin venenatis. In ac lacus at velit scelerisque mattis.
</td>
</tr>