Interesting how different people react. My mother was always telling me to go looks things up in a dictionary or encyclopedia, and I actually came to enjoy doing it. One of my kids would get angry, one would just shrug and drop the question altogether, while the other one also enjoyed learning how to find things out. I suppose it’s just coincidence that the first two have been in and out of prison a few times...
Wayfinder by default just puts out an unordered list. You can use CSS to manipulate the display of the list (see
http://www.alistapart.com/articles/taminglists/.
Using a template, you can modify that behavior to suit yourself, adding whatever characters or text you want to each item.
For example, your rowTpl chunk template could be:
<li><a href="[+wf.link+]" >[+wf.linktext+]</a> - [+wf.wrapper+]</li>
Then in your CSS, just have the li elements use display:inline to line up the items, as per the article in A List Apart.