What I'm trying to accomplish is having<li class="classname"> before every link.
So I used...
wp_list_bookmarks('orderby=rand&before=<li class=\"classname\">);
I got back - <li class=\\\"classname\\\">
So I removed the "\". The result was <li class=\"classname\">!
I tried eveything I can think of including
<?php $pretag='<li class="snap_preview">';
wp_list_bookmarks('orderby=rand&before='.$pretag); ?>
I still get <li class=\"classname\">.
So wusup wit dat? Am I missing something or did I find (an admittedly esoteric) oversight?