You are reading a single comment by @Velocio and its replies. Click here to read the full conversation.
  • Also: I like that table. How did you do it?

    Looks like you just have to write (or paste) the HTML - I can't see a clever markdown shortcut

    Tech Guest Sessions per Day User Sessions per Day Session Duration Bounce Rate Posts per Day
    vBulletin 10k 6k 9m 10s 37% 2.2k
    Microcosm 2.5k 7k 11m 53s 23% 2.4k

    =

        <table>
        <tr>
        <th>Tech</th>
        <th>Guest Sessions per Day</th>
        <th>User Sessions per Day</th>
        <th>Session Duration</th>
        <th>Bounce Rate</th>
        <th>Posts per Day</th>
        </tr>
        <tr>
        <td>vBulletin</td>
        ... etc ...
       </tr></table>
    
  • The table is a Markdown extension, it's a little fussy but you basically draw it in ASCII using the pipe char | to designate columns, line breaks to designate rows, and sets of three hyphens and pipes ---|--- to mark out the header area.

    Tech|Guest Sessions per Day|User Sessions per Day|Session Duration|Bounce Rate|Posts per Day
    ---|---|---|---|---|---
    vBulletin|10k|6k|9m 10s|37%|2.2k
    Microcosm|2.5k|7k|11m 53s|23%|2.4k
    

    Note that you could just use HTML too, but I was being lazy.

About

Avatar for Velocio @Velocio started