Browse Source

Merge pull request #249 from ckeditor/i/6287

Docs: Enhanced the content with emojis in the table feature demo. Closes ckeditor/ckeditor5#6287.
Piotrek Koszuliński 5 years ago
parent
commit
1793013bc1
1 changed files with 19 additions and 19 deletions
  1. 19 19
      packages/ckeditor5-table/docs/_snippets/features/table.html

+ 19 - 19
packages/ckeditor5-table/docs/_snippets/features/table.html

@@ -4,9 +4,9 @@
 		<thead>
 			<tr>
 				<th rowspan="2"></th>
-				<th scope="col" rowspan="2">Espresso</th>
-				<th scope="colgroup" colspan="2">Milk</th>
-				<th scope="col" rowspan="2">Water</th>
+				<th scope="col" rowspan="2">☕️ Espresso</th>
+				<th scope="colgroup" colspan="2">🥛 Milk</th>
+				<th scope="col" rowspan="2">🚰 Water</th>
 			</tr>
 			<tr>
 				<th scope="col">Steamed</th>
@@ -16,31 +16,31 @@
 		<tbody>
 			<tr>
 				<th scope="row">Cappuccino</th>
-				<td>yes</td>
-				<td>yes</td>
-				<td>yes</td>
-				<td>no</td>
+				<td>yes</td>
+				<td>yes</td>
+				<td>yes</td>
+				<td>no</td>
 			</tr>
 			<tr>
 				<th scope="row">Macchiato</th>
-				<td>yes</td>
-				<td>no</td>
-				<td>yes</td>
-				<td>no</td>
+				<td>yes</td>
+				<td>no</td>
+				<td>yes</td>
+				<td>no</td>
 			</tr>
 			<tr>
 				<th scope="row">Latte</th>
-				<td>yes</td>
-				<td>yes</td>
-				<td>no</td>
-				<td>no</td>
+				<td>yes</td>
+				<td>yes</td>
+				<td>no</td>
+				<td>no</td>
 			</tr>
 			<tr>
 				<th scope="row">Americano</th>
-				<td>yes</td>
-				<td>no</td>
-				<td>no</td>
-				<td>yes</td>
+				<td>yes</td>
+				<td>no</td>
+				<td>no</td>
+				<td>yes</td>
 			</tr>
 		</tbody>
 	</table>