Browse Source

Use box-drawing characters for table samples.

Maciej Gołaszewski 5 years ago
parent
commit
410199b0ad
1 changed files with 7 additions and 7 deletions
  1. 7 7
      packages/ckeditor5-table/src/commands/mergecellscommand.js

+ 7 - 7
packages/ckeditor5-table/src/commands/mergecellscommand.js

@@ -121,13 +121,13 @@ function isEmpty( tableCell ) {
 //
 // In a table below:
 //
-//   +---+---+---+---+
-//   | a | b | c | d |
-//   +---+---+---+   +
-//   | e     | f |   |
-//   +       +---+---+
-//   |       | g | h |
-//   +---+---+---+---+
+//   ┌───┬───┬───┬───┐
+//   │ a │ b │ c │ d │
+//   ├───┴───┼───┤   │
+//   │ e     │ f │   │
+//   ├       ├───┼───┤
+//   │       │ g │ h │
+//   └───────┴───┴───┘
 //
 // Valid selections are these which create a solid rectangle (without gaps), such as:
 //   - a, b (two horizontal cells)