Blogroll links sorted by category in a table

As suggested, here is the “arrayed” version:

    $args = array( 
    'categorize' => 1, 
    'category_before' => '', 
    'category_after' => '</table>',
    'title_before' => '<h3>',
    'title_after' => '</h3><table><tr><th>Link</th><th>Description</th><tr>', 
    'orderby' => 'name', 
    'order' => 'ASC', 
    'before' => '<tr><td>', 
    'after' => '</td></tr>', 
    'between' => '</td><td>', 
    'show_description' => 1, 
    'show_name' => 1
    );

    wp_list_bookmarks( $args );

The Highlight of my answer isn’t so much categorize as it is about outputing a table AFTER the category title and separating the kinl description from the link name, as showned on my page: http://www.thebrutes.org/links.

One detail I left out is that the wp_list_bookmarks function outputs a xoxo blogroll class, which is useless and very badly named (what’s next, lolol class?). For those, like me who want to get rid of it, add these lines to your style.css:

ul.xoxo.blogroll { display: none; }

Voilà, I hope it’ll help someone. I haven’t found a single answer to this question, neither here nor anywhere else.