This is a topic in Tips & Tricks

TAB Character in Messages

 
Avatar bmarcoux 4 posts

Would someone know how to insert a TAB character in a message or writeboard? I wouls like to draw a table, and it would become handy.

 
Avatar Mike Wallace 7 posts

You can actually use a lot of basic HTML in both the messages and writeboards. So table html works as well.

<table cellspacing="0" border="1" summary="" cellpadding="1" width="600">
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
 
Avatar Mike Wallace 7 posts

Sorry for the long post before… but I actually found an easier method from http://www.textism.com/tools/textile/index.php

You can create tables by adding the bar char. (|) before and after each piece of data like this: <table> <tr> <td>first colum</td> <td>second colomn</td> </tr> <tr> <td>another row</td> <td> 2nd row 2nd column</td> </tr> </table>

Hope this helps

 
Avatar Mike Wallace 7 posts

:-) it actually converted my post into a table it should be something like ”|first Column|second column|”

Signup or login to post a reply.