You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've discovered a table rendering bug that occurs when using colored/formatted strings. Here's an example with a 2x2
table where values in the last column are in bold:
+----------+----------------------------------+
| Name | Hostname |
+----------+----------------------------------+
| Server A | server-a.example.com |
| Server B | server-b.example.com |
+----------+----------------------------------+
As a result, I get the following:
+----------+----------------------------------+
| Name | Hostname |
+----------+----------------------------------+
| Server A | server-a.example.com |
| Server B | server-b.example.com |
+----------+----------------------------------+
I believe the formatting tags are included in the string length calculation but then removed without being replaced by
trailing white spaces, as the number of missing characters exactly matches strlen('<bold></end>').
Hi Jitendra,
I've discovered a table rendering bug that occurs when using colored/formatted strings. Here's an example with a 2x2
table where values in the last column are in bold:
The expected output should be:
As a result, I get the following:
I believe the formatting tags are included in the string length calculation but then removed without being replaced by
trailing white spaces, as the number of missing characters exactly matches
strlen('<bold></end>').Kind regards,
Adriano